- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在考虑将现有的 powercli 部署脚本移动到 python/pyvmomi,以获得多线程(它部署了大量虚拟机)。原始脚本大量使用 Invoke-VMScript
通过 VMware Tools 将 powershell 片段推送到每个 guest 。
pyvmomi 中的等效功能是什么?具体来说 - 通过工具(而不是访客网络)向访客发送 powershell 脚本,让它使用提供的凭据运行,然后收集输出?
我可以看到 processManager.StartProgramInGuest
,但这似乎是一个笨拙的 3 步过程(上传文件、运行文件、下载重定向结果) - 这就是 powercli 在后台执行的操作吗?
最佳答案
因此,为了提供一些结论,并且因为我无论如何都找不到完整的示例,这是我对此的第一次尝试。它是已使用 SmartConnect
连接到 vcenter 服务器并设置 self.si
的类的一部分。它实际上还没有做太多的错误检查。您可以选择是否要等待并获取输出,或者只是在启动命令后返回。 remote_cmd
最初来自 pyvmomi-community-samples
,因此目前这两种方法之间存在一些重复。
def invoke_vmscript(self, vm_username, vm_password, vm_name, script_content, wait_for_output=False):
script_content_crlf = script_content.replace('\n', '\r\n')
content = self.si.content
creds = vim.vm.guest.NamePasswordAuthentication(username=vm_username, password=vm_password)
vm = self.get_vm(vm_name)
logger.debug("Invoke-VMScript Started for %s", vm_name)
logger.debug("CREATING TEMP OUTPUT DIR")
file_manager = content.guestOperationsManager.fileManager
temp_dir = file_manager.CreateTemporaryDirectoryInGuest(vm, creds, "nodebldr_",
"_scripts")
try:
file_manager.MakeDirectoryInGuest(vm, creds, temp_dir, False)
except vim.fault.FileAlreadyExists:
pass
temp_script_file = file_manager.CreateTemporaryFileInGuest(vm, creds, "nodebldr_",
"_script.ps1",
temp_dir)
temp_output_file = file_manager.CreateTemporaryFileInGuest(vm, creds, "nodebldr_",
"_output.txt",
temp_dir)
logger.debug("SCRIPT FILE: " + temp_script_file)
logger.debug("OUTPUT FILE: " + temp_output_file)
file_attribute = vim.vm.guest.FileManager.FileAttributes()
url = file_manager.InitiateFileTransferToGuest(vm, creds, temp_script_file,
file_attribute,
len(script_content_crlf), True)
logger.debug("UPLOAD SCRIPT TO: " + url)
r = requests.put(url, data=script_content_crlf, verify=False)
if not r.status_code == 200:
logger.debug("Error while uploading file")
else:
logger.debug("Successfully uploaded file")
self.remote_cmd(vm_name, vm_username, vm_password, 'C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\powershell.exe',
"-Noninteractive {0} > {1}".format(temp_script_file, temp_output_file), temp_dir,
wait_for_end=wait_for_output)
output = None
if wait_for_output:
dl_url = file_manager.InitiateFileTransferFromGuest(vm, creds,
temp_output_file)
logger.debug("DOWNLOAD OUTPUT FROM: " + dl_url.url)
r = requests.get(dl_url.url, verify=False)
output = r.text
logger.debug("Script Output was: %s", output)
logger.debug("DELETING temp files & directory")
file_manager.DeleteFileInGuest(vm, creds, temp_script_file)
file_manager.DeleteFileInGuest(vm, creds, temp_output_file)
file_manager.DeleteDirectoryInGuest(vm, creds, temp_dir, True)
logger.debug("Invoke-VMScript COMPLETE")
return output
def remote_cmd(self, vm_name, vm_username, vm_password, command, args, working_dir, wait_for_end=False, timeout=60):
creds = vim.vm.guest.NamePasswordAuthentication(username=vm_username, password=vm_password)
vm = self.get_vm(vm_name)
try:
cmdspec = vim.vm.guest.ProcessManager.ProgramSpec(arguments=args, programPath=command)
pid = self.si.content.guestOperationsManager.processManager.StartProgramInGuest(vm=vm, auth=creds,
spec=cmdspec)
logger.debug("Started process %d on %s", pid, vm_name)
except vmodl.MethodFault as error:
print("Caught vmodl fault : ", error.msg)
return -1
n = timeout
if wait_for_end:
while n > 0:
info = self.si.content.guestOperationsManager.processManager.ListProcessesInGuest(vm=vm, auth=creds,
pids=[pid])
if info[0].endTime is not None:
break
logger.debug("Process not yet completed. Will wait %d seconds", n)
sleep(1)
n = n - 1
logger.debug("Process completed with state: %s", info[0])
关于python - powercli 中的 invoke-vmscript 的 pyvmomi 等效项是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46928104/
我有以下代码: Public Delegate Sub SetStatusBarTextDelegate(ByVal StatusText As String) Private Sub SetStat
在调用 Invoke-RestMethod 时使用 Powershell,例如: Invoke-RestMethod -Method Get -Uri "https://google.com/api/
我正在尝试将 Winform 应用程序转换为控制台应用程序。 Winform 应用程序有一个委托(delegate)处理程序。如何在 console 应用程序中编写相同的功能? this.Invoke
在 WPF 中,Dispatcher.Invoke 和直接在控件实例上调用的 Invoke 有什么区别。据我了解,调度程序负责处理线程的消息,Control.Invoke 是否会继续调用 Dispat
我正在研究性能监控系统,它可以将其例程注入(inject)现有程序集。为此,我试图了解 dalvik 代码的工作原理。 下面是我要完成的工作的示例。输入类可能如下所示: class MyClass{
我正在使用 powershell 命令来执行脚本和 cmdlet。因此,在执行 cmdlet 时,我使用了 powershell.invoke,而在执行脚本时,我使用了 pipeline.invoke
有人能解释一下 Invoke-Expression $test 之间的区别吗?和 Invoke-Expression -Command $test ? 变量测试是: $test = "notepad
我有四个类,即 MapperOne、ReducerOne、MapperTwo、ReducerTwo。我想要其中的一个链。 MapperOne-->ReducerOne-->输出文件生成,输入到Mapp
我正在阅读 Java ForkJoin 框架。不直接在 ForkJoinTask 的实现上调用 invoke()(例如 RecursiveTask),而是实例化 ForkJoinPool 有什么额外的
我在调用 Invoke-SqlCmd 时遇到问题,因为它包含第二个 Invoke-SqlCmd 调用: function Get-Foo { $query=` @" WITH data AS (
有人知道如何解决这个问题吗?我创建了一个客户端来使用网络服务。客户端代码为: package cliente; import java.util.List; import handler.Header
我希望使用 P/Invoke 来允许我的 C# 程序集与 native C 库互操作;这需要是跨平台的(即 Mono),因此不能使用混合模式程序集。我想知道使用不安全的 P/invoke 调用并在不安
一般来说,我对使用 Invoke-RestMethod/Invoke-WebRequest 比较陌生 - 我认为这是以下问题的重要背景。 我正在调用如下电话: $Headers = @{ "A
在 Jenkins 的一个自由风格项目(不是说 Maven2/3 项目)中,我有两个可能的构建步骤: 调用 Maven 3 调用顶级 Maven 目标 在不同的安装中,我有不同的组合(有些两者都有,有
这是完整的错误: e: C:\Users\HP\AndroidStudioProjects\MoneyManager\app\src\main\java\com\cruxrepublic\moneym
我正在编写 jQuery 插件并将它们与 AJAX 集成。我正在减少脂肪并专注于基础知识: (function($) { function MyPlugin(el, options) {
有人可以建议我如何处理这条消息吗? CA1060 Move P/Invokes to NativeMethods class Because it is a P/Invoke method, 'UCo
在java中我们可以“用类名调用一个静态方法”也可以“用一个对象调用一个静态方法”java中“用类名调用静态方法”和“用对象调用静态方法”有什么区别? 最佳答案 没有区别,但建议以静态方式调用 sta
尝试从对话框中的 EditText 获取 Edit Text 的值,但一次又一次地出现此错误 Attempt to invoke virtual method 'android.text.Editab
我正在开发一款扑翼应用程序。在出现此错误之前,读取和写入FireStore数据库没有任何问题,但随后突然出现错误(如下所示),并阻止我读取或写入数据库。我一直在寻找答案,但不幸的是,我找不到任何可以解
我是一名优秀的程序员,十分优秀!