---
title: "detachBlockStorageInstances"
slug: "cli-vserver-storage-detachblockstorageinstances"
tags: ["Block Storage", "Server", "Storage"]
updated: 2026-06-25T09:10:27Z
published: 2026-06-25T09:10:27Z
canonical: "cli-fin.ncloud-docs.com/cli-vserver-storage-detachblockstorageinstances"
---
> ## 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.
# detachBlockStorageInstances
서버 인스턴스에 할당된 블록 스토리지 인스턴스 목록을 해제합니다.
## 구문
`detachBlockStorageInstances` 구문은 다음과 같습니다.
```shell
./ncloud vserver detachBlockStorageInstances \
--blockStorageInstanceNoList \
[--regionCode ] \
[--output ]
```
## 옵션
`detachBlockStorageInstances` 실행 시 지정할 수 있는 옵션을 설명합니다.
### 필수 옵션
`detachBlockStorageInstances`의 필수 옵션입니다.
| 옵션 | 타입 | 필수 여부 | 설명 |
| :--- | :--- | :--- | :--- |
| `--blockStorageInstanceNoList` | List | Required | 블록 스토리지 인스턴스 번호 목록- 공백으로 구분하여 여러 개 입력 가능 (예시: `--blockStorageInstanceNoList 1234 2345`)
- [getBlockStorageInstanceList](/docs/cli-vserver-storage-getblockstorageinstancelist) 참조
|
### 공통 옵션
`vserver` 명령에서 공통으로 사용하는 옵션에 대한 정보는 [Server 옵션](/docs/cli-vserver#옵션)을 참조해 주십시오.
## 예시
블록 스토리지 인스턴스 해제 요청이 성공하면 블록 스토리지 인스턴스의 최신 정보가 반환됩니다.
### 명령
명령 예시는 다음과 같습니다.
```shell
./ncloud vserver detachBlockStorageInstances \
--blockStorageInstanceNoList 89012345 \
--regionCode FKR \
--output json
```
### 출력
출력 예시는 다음과 같습니다.
```json
{
"detachBlockStorageInstancesResponse": {
"totalRows": 1,
"blockStorageInstanceList": [
{
"blockStorageInstanceNo": "89012345",
"serverInstanceNo": "34567890",
"blockStorageName": "test-block-storage-01",
"blockStorageType": {
"code": "SVRBS",
"codeName": "서버 BS"
},
"blockStorageSize": 53687091200,
"deviceName": "/dev/xvdb",
"blockStorageProductCode": "SPBSTBSTAD000006",
"blockStorageInstanceStatus": {
"code": "ATTAC",
"codeName": "블록스토리지 ATTACHED 상태"
},
"blockStorageInstanceOperation": {
"code": "DETAC",
"codeName": "블록스토리지 DETACH OP"
},
"blockStorageInstanceStatusName": "detaching",
"createDate": "2026-05-27T09:09:31+0900",
"blockStorageDescription": "Test block storage",
"blockStorageDiskType": {
"code": "NET",
"codeName": "네트웍 스토리지"
},
"blockStorageDiskDetailType": {
"code": "SSD",
"codeName": "SSD"
},
"maxIopsThroughput": 4000,
"isEncryptedVolume": false,
"zoneCode": "FKR-1",
"regionCode": "FKR",
"isReturnProtection": false,
"blockStorageVolumeType": {
"code": "SSD",
"codeName": "SSD"
},
"hypervisorType": {
"code": "XEN",
"codeName": "XEN"
}
}
],
"requestId": "92bccd64-5441-4c1f-9003-8af640f3d4f0",
"returnCode": "0",
"returnMessage": "success"
}
}
```