VPLEX: 가상 볼륨을 생성하는 방법

요약: 이 KB 문서에서는 가상 볼륨을 생성하는 데 필요한 단계를 간략하게 설명합니다.

이 문서는 다음에 적용됩니다. 이 문서는 다음에 적용되지 않습니다. 이 문서는 특정 제품과 관련이 없습니다. 모든 제품 버전이 이 문서에 나와 있는 것은 아닙니다.

지침

  1. 할당되지 않은 스토리지 볼륨을 확인합니다.
 VPlexcli:/> ll **/storage-volumes

/clusters/cluster-1/storage-elements/storage-volumes:
Name                                      VPD83 ID                                  Capacity  Use        Vendor  IO      Type         Thin     Provision
----------------------------------------  ----------------------------------------  --------  ---------  ------  Status  -----------  Rebuild  Type
----------------------------------------  ----------------------------------------  --------  ---------  ------  ------  -----------  -------  ---------
ESX_4                                     VPD83T3:6006048000028746073753594d303143  8.43G     used       EMC     alive   normal       true     legacy
Symm0737_0001                             VPD83T3:6006048000028746073753594d303031  8.43G     used       EMC     alive   normal       true     legacy
Symm0737_001B                             VPD83T3:6006048000028746073753594d303142  8.43G     claimed    EMC     alive   normal       true     legacy
Symm0737_001D                             VPD83T3:6006048000028746073753594d303144  8.43G     claimed    EMC     alive   normal       true     legacy
Test                                      VPD83T3:6006048000028746073753594d303041  8.43G     claimed    EMC     alive   normal       true     legacy
VPD83T3:6006048000028746073753594d303035  VPD83T3:6006048000028746073753594d303035  8.43G     unclaimed  EMC     alive   traditional  false    legacy

 

  1. 원하는 스토리지 볼륨을 청구합니다.
VPlexcli:/> storage-volume claim --name testA -d VPD83T3:6006048000028746073753594d303035/
Claimed 1 of 1 storage-volumes.

 

  1. Storage-volume 클레임이 성공했는지 확인합니다.
VPlexcli:/> ll /clusters/cluster-1/storage-elements/storage-volumes

/clusters/cluster-1/storage-elements/storage-volumes:
Name                                      VPD83 ID                                  Capacity  Use        Vendor  IO      Type         Thin     Provision
----------------------------------------  ----------------------------------------  --------  ---------  ------  Status  -----------  Rebuild  Type
----------------------------------------  ----------------------------------------  --------  ---------  ------  ------  -----------  -------  ---------
ESX_4                                     VPD83T3:6006048000028746073753594d303143  8.43G     used       EMC     alive   normal       true     legacy
Symm0737_0001                             VPD83T3:6006048000028746073753594d303031  8.43G     used       EMC     alive   normal       true     legacy
Symm0737_001B                             VPD83T3:6006048000028746073753594d303142  8.43G     claimed    EMC     alive   normal       true     legacy
Symm0737_001D                             VPD83T3:6006048000028746073753594d303144  8.43G     claimed    EMC     alive   normal       true     legacy
Test                                      VPD83T3:6006048000028746073753594d303045  8.43G     claimed    EMC     alive   normal       true     legacy
testA                                     VPD83T3:6006048000028746073753594d303035  8.43G     claimed    EMC     alive   normal       false    legacy
 
  1. 사용 가능한 회수된 스토리지 볼륨에서 익스텐트를 생성합니다.
VPlexcli:/> extent create testA,Test

 

  1. 익스텐트가 생성되었는지 확인합니다.
VPlexcli:/> ll /clusters/cluster-1/storage-elements/extents

/clusters/cluster-1/storage-elements/extents:
Name                                              StorageVolume       Capacity  Use
------------------------------------------------  ------------------  --------  -------
extent_Test_1                                     Test                8.43G     claimed
extent_testA_1                                    testA               8.43G     claimed

 

  1. 로컬 디바이스를 생성합니다.
VPlexcli:/> local-device create --name testA_vol --geometry raid-1 --extents /clusters/cluster-1/storage-elements/extents/extent_testA_1,/clusters/cluster-1/storage-elements/extents/extent_Test_1 --force

 

  1. 로컬 디바이스가 성공적으로 생성되었는지 확인합니다.
VPlexcli:/> ll -p **/devices

/clusters/cluster-1/devices:
Name                    Operational  Health  Block    Block  Capacity  Geometry  Visibility  Transfer  Virtual Volume
----------------------  Status       State   Count    Size   --------  --------  ----------  Size      --------------------------
----------------------  -----------  ------  -------  -----  --------  --------  ----------  --------  --------------------------
testA_vol                 ok           ok      2209680  4K     8.43G     raid-1    local       128K      -



VPlexcli:/> show-use-hierarchy /clusters/cluster-1/devices/testA_vol/
local-device: testA_vol (8.43G, raid-1, cluster-1)
  extent: extent_Test_1 (8.43G)
    storage-volume: Test (8.43G)
      logical-unit: VPD83T3:6006048000028746073753594d303045
        storage-array: EMC-SYMMETRIX-287460737
  extent: extent_testA_1 (8.43G)
    storage-volume: testA (8.43G)
      logical-unit: VPD83T3:6006048000028746073753594d303035
        storage-array: EMC-SYMMETRIX-287460737

 

  1. 가상 볼륨을 생성합니다.
VPlexcli:/> virtual-volume create -r testA_vol

 

  1. 가상 볼륨이 생성되었는지 확인합니다.
VPlexcli:/> ll **/virtual-volumes
/clusters/cluster-1/virtual-volumes:
Name                        Operational  Health  Service     Block    Block  Capacity  Locality  Supporting Device       Cache Mode   Expandable  Expandable  Consistency  VPD ID
--------------------------  Status       State   Status      Count    Size   --------  --------  ----------------------  -----------  ----------  Capacity    Group        ----------------------------------------
--------------------------  -----------  ------  ----------  -------  -----  --------  --------  ----------------------  -----------  ----------  ----------  -----------  ----------------------------------------
testA_vol_vol               ok           ok      unexported  2209680  4K     8.43G     local     testA_vol             synchronous  true        0B          -            VPD83T3:6000144000000010b0026af0c08572c2


VPlexcli:/> show-use-hierarchy /clusters/cluster-1/devices/testA_vol/
virtual-volume: testA_vol_vol (8.43G, local @ cluster-1, unexported)   <-----------
  local-device: testA_vol (8.43G, raid-1, cluster-1)
    extent: extent_Test_1 (8.43G)
      storage-volume: Test (8.43G)
        logical-unit: VPD83T3:6006048000028746073753594d303045
          storage-array: EMC-SYMMETRIX-287460737
    extent: extent_testA_1 (8.43G)
      storage-volume: testA (8.43G)
        logical-unit: VPD83T3:6006048000028746073753594d303035
          storage-array: EMC-SYMMETRIX-287460737olumes


가상 볼륨이 스토리지 보기에 추가되지 않았기 때문에 현재 내보내지 않은 상태로 표시됩니다.

  1. 사용 가능한 스토리지 보기를 확인하여 다음에 가상 볼륨을 추가합니다.
VPlexcli:/> ll **/storage-views

/clusters/cluster-1/exports/storage-views:
Name             Operational  initiator-ports                     virtual-volumes                                                                 port name, enabled, export status
---------------  Status       ----------------------------------  ------------------------------------------------------------------------------  ----------------------------------
---------------  -----------  ----------------------------------  ------------------------------------------------------------------------------  ----------------------------------
DELLPR510-F      ok           DELLPR510-F_HBA0                    (0,device_Symm0737_0008_1_vol,VPD83T3:6000144000000010b0026af0c085706c,8.43G),  P000000003CA00263-A0-FC02,true,ok,
                                                                  (1,ESX_4_vol,VPD83T3:6000144000000010b0026af0c08570e5,16.9G),                   P000000003CA0026A-A0-FC00,true,ok,
                                                                  (5,device_Symm0737_0007_1_vol,VPD83T3:6000144000000010b0026af0c0857071,8.43G)   P000000003CB0026A-B1-FC00,true,ok


                                                                  

  1. 원하는 스토리지 보기에 가상 볼륨을 추가합니다.
VPlexcli:/> export storage-view addvirtualvolume --view DELLPR510-F --virtual-volumes testA_vol_vol

 

  1. 볼륨이 생성되었는지 확인합니다.
VPlexcli:/> show-use-hierarchy /clusters/cluster-1/devices/testA_vol/
storage-view: DELLPR510-F (cluster-1)
  virtual-volume: testA_vol_vol (8.43G, local @ cluster-1, running)
    local-device: testA_vol (8.43G, raid-1, cluster-1)
      extent: extent_Test_1 (8.43G)
        storage-volume: Test (8.43G)
          logical-unit: VPD83T3:6006048000028746073753594d303045
            storage-array: EMC-SYMMETRIX-287460737
      extent: extent_testA_1 (8.43G)
        storage-volume: testA (8.43G)
          logical-unit: VPD83T3:6006048000028746073753594d303035
            storage-array: EMC-SYMMETRIX-287460737

해당 제품

VPLEX Series

제품

VPLEX Series, VPLEX VS1, VPLEX VS2, VPLEX VS6
문서 속성
문서 번호: 000158420
문서 유형: How To
마지막 수정 시간: 04 5월 2026
버전:  6
다른 Dell 사용자에게 질문에 대한 답변 찾기
지원 서비스
디바이스에 지원 서비스가 적용되는지 확인하십시오.