NetApp使用powershell mount和umount Volume
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NetApp使用powershell mount和umount Volume相关的知识,希望对你有一定的参考价值。
1)连接DataOntap Cmode控制器
Connect-NCController 10.20.30.40 该IP地址是Cluster 管理地址。
2)Mount 现有volume
Mount-NcVol -Name nfsvol3 -VserverContext cifssvr -JunctionPath /nfsvol3
3)Umount volume
Dismount-NcVol -Name nfsvol3 -VserverContext cifssvr
批量Mount Volume
$vols=get-ncvol $paths=($vols|where {$_.Name -ne "volcifsroot" -and $_.Name -ne "vol0"}).Name $fpaths=$paths | foreach{ "/"+ $_} for($i=0;$i -lt $paths.Count;$i++) { mount-ncvol -Name $paths[$i] -VserverContext cifssvr -JunctionPath $fpaths[$i] }
批量Umount Volume
$vols=get-ncvol $vols|where {$_.Name -ne "volcifsroot" -and $_.Name -ne "vol0"} |foreach-object{dismount-ncvol -Name $_.Name -VserverContext cifssvr }
以上是关于NetApp使用powershell mount和umount Volume的主要内容,如果未能解决你的问题,请参考以下文章