Documentation Index

Fetch the complete documentation index at: https://cli-fin.ncloud-docs.com/llms.txt

Use this file to discover all available pages before exploring further.

removePlacementGroupServerInstance

Prev Next

물리 배치 그룹에서 서버 인스턴스를 제거합니다.

구문

removePlacementGroupServerInstance 구문은 다음과 같습니다.

./ncloud vserver removePlacementGroupServerInstance \
    --placementGroupNo <placement-group-no> \
    --serverInstanceNo <server-instance-no> \
    [--regionCode <FKR>] \
    [--output <json|xml>]

옵션

removePlacementGroupServerInstance 실행 시 지정할 수 있는 옵션을 설명합니다.

필수 옵션

removePlacementGroupServerInstance의 필수 옵션입니다.

옵션 타입 필수 여부 설명
--placementGroupNo String Required 물리 배치 그룹 번호
--serverInstanceNo String Required 서버 인스턴스 번호

공통 옵션

vserver 명령에서 공통으로 사용하는 옵션에 대한 정보는 Server 옵션을 참조해 주십시오.

예시

물리 배치 그룹에서 서버 인스턴스 제거 요청이 성공하면 제거된 서버 인스턴스의 식별 정보와 구성 정보가 반환됩니다.

명령

명령 예시는 다음과 같습니다.

./ncloud vserver removePlacementGroupServerInstance \
    --placementGroupNo 91234567 \
    --serverInstanceNo 34567890 \
    --regionCode FKR \
    --output json

출력

출력 예시는 다음과 같습니다.

{
  "removePlacementGroupServerInstanceResponse": {
    "totalRows": 1,
    "serverInstanceList": [
      {
        "serverInstanceNo": "34567890",
        "serverName": "test-server-01",
        "cpuCount": 2,
        "memorySize": 4294967296,
        "platformType": {
          "code": "UBD64",
          "codeName": "Ubuntu Desktop 64 Bit"
        },
        "loginKeyName": "test-login-key-01",
        "publicIpInstanceNo": "123456789",
        "publicIp": "***.***.***.***",
        "serverInstanceStatus": {
          "code": "RUN",
          "codeName": "서버 RUN 상태"
        },
        "serverInstanceOperation": {
          "code": "NULL",
          "codeName": "서버 NULL OP"
        },
        "serverInstanceStatusName": "running",
        "createDate": "2026-05-18T11:11:26+0900",
        "uptime": "2026-05-18T11:16:30+0900",
        "serverImageProductCode": "SW.VSVR.OS.LNX64.UBNTU.SVR2004.B050",
        "serverProductCode": "SVR.VSVR.STAND.C002.M004.NET.SSD.B050.G001",
        "isProtectServerTermination": false,
        "zoneCode": "FKR-1",
        "regionCode": "FKR",
        "vpcNo": "12345678",
        "subnetNo": "23456789",
        "networkInterfaceNoList": [
          "56789012"
        ],
        "serverInstanceType": {
          "code": "STAND",
          "codeName": "Standard"
        },
        "baseBlockStorageDiskType": {
          "code": "NET",
          "codeName": "네트웍 스토리지"
        },
        "baseBlockStorageDiskDetailType": {
          "code": "SSD",
          "codeName": "SSD"
        },
        "placementGroupNo": "91234567",
        "placementGroupName": "test-pg-01",
        "hypervisorType": {
          "code": "XEN",
          "codeName": "XEN"
        },
        "serverImageNo": "45678901",
        "serverSpecCode": "sd2-g1-s50",
        "eventList": [],
        "isPreInstallGpuDriver": false
      }
    ],
    "requestId": "2c827870-41d3-4bf8-8b12-68dbab2fe744",
    "returnCode": "0",
    "returnMessage": "success"
  }
}