2014/03/04

VMware ESXi 5.1 umount inactive NFS storage

犯了一個錯誤,讓NFS Storage變成inactive

透過VCSA umount就出現錯誤訊息XD



可是我把重要資料放在上面…
所以更要解決這個問題XD

Unable to remove an inaccessible NFS datastore with Storage I/O control enabled (2008507)有提到解決方法要透過SSH去解決

所以我們就透過SSH先連到ESXI吧!


先查詢mount的清單,輸入
esxcli storage nfs list

紀錄一下要umount的NFS Volume Name

停用SIOC service,停用前最好確認沒有其他Storage在使用喔…XDD
/etc/init.d/storageRM stop


將NFS umount
#使用空白分命名的Volume
#ex:My Storage
esxcli storage nfs remove -v "My Storage"
#未使用空白命名的Volume
#ex:Storage
esxcli storage nfs remove -v Storage


掛載完將SIOC service啟用
/etc/init.d/storageRM start



回到VCSA,Storage已經被移除,就可以重新掛載了



參考資料:
http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2008507