esx host 를 여러대 운영중이고,
해당 host 를 vcenter 로 묶어서 운영중인상태에서,
iscsi 의 storage 를 붇였다가 i/o 체크 를 활성화 해둔뒤 해당 storage 를 제거 하면,
host 에 연결했던 sotrage 가 비활성화 인체로 삭제가 안되는경우가 있다.
Call "HostDatastoreSystem.RemoveDatastore" for object "datastoreSystem-123" on vCenter Server "WIN-I18P0SSLK50" failed.
Can't remove datastore 'nexenta111' because Storage I/O Control is enabled on it. Correct it and re-try the operation
이럴때 지우려고 하면 i/o 체크가 되어있어서 삭제가 안된다고 나온다..
이럴때 아래와 같이 vcenter db 에 가서 지우자. ㅠ.ㅠ
select top 100 * from dbo.VPX_FS_MOUNT_VOLUME_INFO
delete from VPX_FS_MOUNT_VOLUME_INFO where name='nexenta111'
delete from vpx_datastore where name='nexenta111'
그뒤에 호스트를 각각 재부팅 하면 새로올라온 호스트에서 해당 내용이 삭제가 된것을 볼수 있다.
'Server Story.... > etc' 카테고리의 다른 글
stickypad 윈도우용 메모장. (0) | 2012.02.13 |
---|---|
usb boot 되는 usb .. .. 우리나라에서 현재 까지 유일... (0) | 2012.02.13 |
python 으로 xml rpc 접속 해서 결과값 내는 방법. (0) | 2011.12.06 |
ms sql db 백업 , 복원시 계정 충돌 관련 문제. (0) | 2011.11.02 |
Windows 64bit and 32bit work dlll problem.. isapi (0) | 2011.09.08 |