【NetApp】使用powershell mount和umount Volume

简介:

11)连接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

1
2
3
4
5
6
7
8
$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

1
2
$vols = get-ncvol
$vols |where  { $_ .Name  -ne  "volcifsroot"  -and  $_ .Name  -ne  "vol0" |foreach -object{dismount-ncvol -Name  $_ .Name -VserverContext cifssvr }


7-Mode snapshot创建

1
  get-NaVol  volnfs |  New-NaSnapshot  -SnapName  $i






      本文转自daniel8294 51CTO博客,原文链接:http://blog.51cto.com/acadia627/1929927 ,如需转载请自行联系原作者




相关文章
|
3月前
|
监控 关系型数据库 MySQL
PowerShell 脚本编写 :自动化Windows 开发工作流程
PowerShell 脚本编写 :自动化Windows 开发工作流程
135 0
|
4月前
|
Windows
Powershell 重新排列去重 Windows环境变量
【9月更文挑战第13天】本文介绍如何使用PowerShell对Windows环境变量进行重新排列和去重。首先通过`$env:`访问环境变量,接着使用`-split`命令分割路径,再利用`Select-Object -Unique`去除重复项。之后可根据需要对路径进行排序,最后将处理后的路径组合并更新环境变量。注意修改环境变量前应备份重要数据并了解潜在影响。
164 10
|
8月前
|
存储 Ubuntu Linux
windows可以安装Ubuntu,ubuntu上也可以安装Powershell
powerhsell除了可以在windows上使用外,还可以在Ubuntu上部署开发环境。下面介绍Ubuntu上安装powershell的方法。
242 0
|
Shell Linux 开发工具
windows中cmd和PowerShell批处理命令
之前在 Git 批量删除本地分支,有用到 Linux 或 MacOS 下的批处理命令,这个命令中的 grep、xargs 本身是 Shell script,在 windows 中的 cmd 和 PowerShell 中是不能用的
130 0
|
JavaScript Windows
[Vue]解决 Windows PowerShell 不识别 vue 命令的问题
[Vue]解决 Windows PowerShell 不识别 vue 命令的问题
|
Windows
使用PowerShell获取Windows当前锁屏壁纸
使用PowerShell获取Windows当前锁屏壁纸 如果原始图片丢了,用这段代码就可以提取当前锁屏壁纸了!
207 0
|
应用服务中间件 nginx Windows
Windows PowerShell 中启动 Nginx 报错解决方案
Windows PowerShell 中启动 Nginx 报错解决方案
Windows PowerShell 中启动 Nginx 报错解决方案
|
XML 监控 数据格式
利用powershell进行windows日志分析
0x00 前言   Windows 中提供了 2 个分析事件日志的 PowerShell cmdlet:一个是Get-WinEvent,超级强大,但使用起来比较麻烦;另一个是Get-EventLog,使得起来相当简单,可以实时筛选,接下来,我们利用PowerShell 来自动筛选 Windows 事件日志。
2543 0