どうも、Tです。
Power CLIを使ってvCenter・ESXiへ接続してみます。
共通問題
下記のようなエラーが出る場合は、接続コマンドに「-force」オプションを付けます。
Connect-VIServer : 2021/10/28 10:06:22 Connect-VIServer Error: Invalid server certificate. Use Set-PowerCLIConfigurati
on to set the value for the InvalidCertificateAction option to Prompt if you’d like to connect once or to add a permane
nt exception for this server.
Additional Information: 機関 ‘192.168.10.130’ との SSL/TLS のセキュリティで保護されているチャネルに対する信頼関係を確立
できませんでした。
発生場所 行:1 文字:1
+ Connect-VIServer -Server 192.168.10.130 -Protocol https -User root -P …
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : セキュリティ エラー: (: ) [Connect-VIServer]、ViSecurityNegotiationException
+ FullyQualifiedErrorId : Client20_ConnectivityServiceImpl_Reconnect_CertificateError,VMware.VimAutomation.ViCore.
Cmdlets.Commands.ConnectVIServer
vCenterへ接続
接続
下記のコマンドを実行します。
Connect-VIServer -Server <vCenterのIPアドレス or FQDN> -User Administrator@vsphere.local -Password <パスワード>
エラーが出る場合は、-forceオプションを付けます。
Connect-VIServer -Server <vCenterのIPアドレス or FQDN> -User Administrator@vsphere.local -Password <パスワード> -force
切断
下記のコマンドを実行します。「-Confirm:$False」オプションで切断の確認なしで切断を実行します。
Disconnect-VIServer -Server <vCenterのIPアドレス or FQDN> -Confirm:$False
ESXiへ接続
接続
下記のコマンドを実行します。
Connect-VIServer -Server <ESXiのIPアドレス or FQDN> -User root -Password <パスワード>
エラーが出る場合は、-forceオプションを付けます。
Connect-VIServer -Server <ESXiのIPアドレス or FQDN> -User root -Password <パスワード> -force
切断
下記のコマンドを実行します。「-Confirm:$False」オプションで切断の確認なしで切断を実行します。
Disconnect-VIServer -Server <ESXiホストのIPアドレス or FQDN> -Confirm:$False