2020年2月12日水曜日

VMware PowerCLI で nfs のマウント操作をしてみた

概要

VMware.PowerCLI で nfs のデータストアをマウントする操作をしてみました
サンプルのコマンドレットを紹介します

環境

  • CentOS 7.7.1908
  • .NET SDK 3.1
  • PowerShell 6.2.3
  • VMware.PowerCLI 11.5.0.14912921

データストアを追加する (マウント)

  • Connect-VIServer -Server 192.168.100.10 -User administrator@vsphere.local -Password xxxxxxxx
  • $host1 = Get-VMhost -Name 192.168.100.11
  • New-Datastore -Name nfs_test -Nfs -NfsHost 192.168.100.20 -Path /opt/nfs -VMHost $host1

データストアを削除する (アンマウント)

  • Remove-Datastore -Datastore nfs_test -VMHost $host1 -Confirm:$false

データストアの一覧を表示する

  • Get-Datastore

参考サイト

0 件のコメント:

コメントを投稿