---
title: "addPlacementGroupServerInstance"
slug: "cli-vserver-server-placementgroup-addplacementgroupserverinstance"
tags: ["Placement Group", "Server"]
updated: 2026-06-25T09:10:26Z
published: 2026-06-25T09:10:26Z
canonical: "cli-fin.ncloud-docs.com/cli-vserver-server-placementgroup-addplacementgroupserverinstance"
---
> ## 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.
# addPlacementGroupServerInstance
물리 배치 그룹에 서버 인스턴스를 추가합니다.
## 구문
`addPlacementGroupServerInstance` 구문은 다음과 같습니다.
```shell
./ncloud vserver addPlacementGroupServerInstance \
--placementGroupNo \
--serverInstanceNo \
[--regionCode ] \
[--output ]
```
## 옵션
`addPlacementGroupServerInstance` 실행 시 지정할 수 있는 옵션을 설명합니다.
### 필수 옵션
`addPlacementGroupServerInstance`의 필수 옵션입니다.
| 옵션 | 타입 | 필수 여부 | 설명 |
| :--- | :--- | :--- | :--- |
| `--placementGroupNo` | String | Required | 물리 배치 그룹 번호- [getPlacementGroupList](/docs/cli-vserver-server-placementgroup-getplacementgrouplist) 참조
|
| `--serverInstanceNo` | String | Required | 서버 인스턴스 번호- [getServerInstanceList](/docs/cli-vserver-server-getserverinstancelist) 참조
|
### 공통 옵션
`vserver` 명령에서 공통으로 사용하는 옵션에 대한 정보는 [Server 옵션](/docs/cli-vserver#옵션)을 참조해 주십시오.
## 예시
물리 배치 그룹에 서버 인스턴스 추가 요청이 성공하면 추가된 서버 인스턴스의 식별 정보와 구성 정보가 반환됩니다.
### 명령
명령 예시는 다음과 같습니다.
```shell
./ncloud vserver addPlacementGroupServerInstance \
--placementGroupNo 91234567 \
--serverInstanceNo 34567890 \
--regionCode FKR \
--output json
```
### 출력
출력 예시는 다음과 같습니다.
```json
{
"addPlacementGroupServerInstanceResponse": {
"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": "78901234",
"publicIp": "203.0.113.10",
"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": "061aee01-aa48-430e-a844-efc7fefd90cf",
"returnCode": "0",
"returnMessage": "success"
}
}
```