跳到主要內容

發表文章

目前顯示的是 11月, 2017的文章

NFS datastore的優缺點

使用NFS datastore的優點: 可以用任何client去讀取資料,像我偶爾需要去修改 vmx 檔時,可以不用透過console用vi改,用Notepad++/Atom/Pluma去修改實在是一大樂事。 備份容易,可以用NAS/NFS provider上的備份機制,目前的NAS都有快照機制,也可以將快照備份到其他台NAS。我買一套 Veeam Backup and Replication 的$,就足夠買一座S牌或Q牌NAS做為備份用。 由於是File based,所以支援 重複資料刪除 ( Deduplication )。使用iSCSI時 Deduplication 的效率其實很差,雖然很多家都說是block level deduplication,其實效果有限。 不過若不是買NetApp這種等級的神器,還是不要輕易開啟,我曾經在Nexenta Store上開啟,效果非常不滿意,對效能影響甚鉅。 需要還原備份時很容易,可以快速掛載備份的vmdk取代原有的vmdk達成快速復原。  使用NFS datastore的缺點:  只能用單一網路,沒有MPIO之類的機制。多埠合併都需要switch支援,不在討論之列。 使用NFS target的File System,不是 VMFS ,限制比較多。 效能不如iSCSI,原因就是以上兩點綜合。 結論: 需要極高速的datastore時,首選仍然是iSCSI,但若考慮到備份還原時,NFS 對於窮人 也可以納入考量。

NFS datastore change IP address

摘錄自  Changing IP address of NFS Datastore - Shut down all VMs (via the VIC) - Put the server into maintenance mode: # vimsh -n -e /hostsvc/maintenance_mode_enter - For each datastore whose address has changed, delete the old, and re-add it with new address (and exact same label): # esxcfg-nas -d <label> # esxcfg-nas -a --host <new_name> --share <remote_nfs_share_path> <label> - Mount the datastores # esxcfg-nas -r (this will fail if any datastore hosts are still unreachable, or will complete silently if all goes well) - Bring the server out of maintenance mode: # vimsh -n -e /hostsvc/maintenance_mode_exit

Mounting NFS datastores with different IP address one different ESXi Hosts 讓不同的ESXi host使用不同的IP掛載同一個NFS Target

I have a small vSphere environment, the NAS has 4 NIC ports, 3 ESXi client direct connect to NAS without switch/hub by different IPs. vCenter thake them as different NFS datastore, because of different UUIDs. A UUID mismatch between two datastores occurs because the UUID is based on a hash of the NFS Server and Path, as seen by running esxcfg-nas. If you have specified the NFS server information using different methods on different hosts, then the hash value, and ultimately the UUIDs will be different. 我有一個小型的vSphere環境,其中1座4埠網路NAS和3台ESXi使用不同網段IP直接連接到NAS。但是vCenter認為它們是不同的NFS datastore,因為產生的hash和UUID不同,詳見  VMware KB1005930 。