标签:vmware api
环境 python 2.7 或者 3.4以上
1 安装pyvmomi
pip install pyvmomi
2、git clone https://github.com/vmware/pyvmomi-community-samples/
里面是很多人写号的脚本 clone_vm.py 是用来克隆虚拟机的
但是 在我的环境下 vcenter6.0下老是报ssl错误
修改了下原文件
def main():
"""
Let this thing fly
"""
args = get_args()
si = None
context = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
context.verify_mode = ssl.CERT_NONE
加入标黄的两行,文件头加入 import ssl
执行脚本
python2.7 clone_vm.py -s -u -p ‘ --template "centos-6.7-500g-withlvm-ver:9-2" -v test-122
标签:vmware api
原文地址:http://superbigsea.blog.51cto.com/6862263/1759130