奚有米一岁啦!先来张庆生照!
时间过的真快,VMware也已经10周年了,PowerCLI也在上个月发布了新的版本,版本号也直接从6.5到了10[1],就是为了10周年的缘故吧,在slack的讨论里也有这样的解释:
Because 7 8(ate) 9
随着这次的版本的更新,更是加入了对MacOS和多种Linux发行版本的支持,这个月其Docker版本也有了更新。所以这篇博客记录下几种不同环境下PowerCLI的安装方法。
Linux安装PowerCLI
目前官方已经支持在MacOS和好几种Linux发行版上使用PowerCLI,这里测试的机器是CentOS7。
实际上,正是因为现在.net core和PowerShell已经支持了在多种操作系统上运行,所以使得PowerCLI作为一个PowerShell模块可以运行在Linux和MacOS。
安装步骤也比较简单:
安装PowerShell
12[root@host1 ~]# curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo[root@host1 ~]# yum install powershell安装PowerCLI模块
12345678[root@host1 ~]# pwshPowerShell v6.1.0-preview.1Copyright (c) Microsoft Corporation. All rights reserved.https://aka.ms/pscore6-docsType 'help' to get help.PS /root> install-module vmware.powercli -Scope CurrentUser
安装完成的powercli module目录会在 ~/.local/share/powershell/Modules/
接下来就可以直接使用PowerCLI命令了。
MacOS环境下的安装这里就省略了,具体步骤可以参考官方博客[2]
通过Docker使用PowerCLI
我这里使用PhotonOS v2测试了Docker下使用PowerCLI,安装使用也非常简单:
下载PowerCLI Image
1234567891011121314151617root@PhotonOS2 [ ~ ]# docker pull vmware/powerclicoreUsing default tag: latestlatest: Pulling from vmware/powerclicoree9b1ffebdf09: Pull complete1ca0671214e4: Pull completee2054d0e7b6e: Downloading [=================> ] 29.73MB/83.88MB9e5896375981: Download completee2054d0e7b6e: Downloading [===============================> ] 52.98MB/83.88MBe2054d0e7b6e: Downloading [====================================> ] 12.85MB/17.76MBe2054d0e7b6e: Pull complete9e5896375981: Pull complete4fda4ed0aa8e: Pull completeae595f021807: Pull complete2223c2963494: Pull completec0625c88535b: Pull completeDigest: sha256:4c19d7f6e5b460cdcea403977f1e8491f5c28c81a60e84dddf9d65921ba3ac51Status: Downloaded newer image for vmware/powerclicore:latest运行PowerCLI container
1234567891011121314151617181920root@PhotonOS2 [ ~ ]# docker run -it vmware/powerclicorePowerShell v6.0.1Copyright (c) Microsoft Corporation. All rights reserved.https://aka.ms/pscore6-docsType 'help' to get help.PS /root> $PSVersionTableName Value---- -----PSVersion 6.0.1PSEdition CoreGitCommitId v6.0.1OS Linux 4.9.80-1.ph2-esx #1-photon SMP Wed Feb 14 14:45:42 UTC 2018Platform UnixPSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}PSRemotingProtocolVersion 2.3SerializationVersion 1.1.0.1WSManStackVersion 3.0
时间就是知识,时间就是力量,时间就是生命。——郭沫若