问题标签 [remote-execution]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
unity3d - 使用 psexec 从远程计算机运行启用 VR 的 Unity 可执行文件
我正在使用 PSTools从远程计算机运行启用 VR 的 Unity 可执行文件。该命令直接在目标 PC 的文件系统 (psexec \remotecomputer -i -s "c:/Users/me/Desktop/Build/TestMall.exe") 上查找可执行文件,其中存储了 .exe 和 _Data 文件。它不是通过网络复制的。
可执行文件可以正常启动,只是忽略了 VR 功能(没有跟踪,并且 Oculus Rift 中不显示任何内容)。现在,如果我直接从目标 PC 运行相同的 .exe,它在 Rift 中运行得非常好。
当我远程发送运行命令时,也许有一些我应该考虑的特殊参数?
有人有类似的问题吗?非常感谢任何帮助。
ssh - 使用expect通过ssh远程执行脚本
我是新手expect
。我尝试下面的代码,但它失败了:
任何人都可以澄清
node.js - nodejs - 错误:等待握手时超时
我正在使用使用 ssh2 npm 包的 remote-exec,我收到以下错误
错误:等待握手时超时
我正在运行的代码如下
显然我已经更改了用户名、密码和 IP,但您应该能够理解。
我试图查看类似的问题,但从我所看到的情况来看,没有一个有很好的工作答案。
谢谢!
windows - VBoxManage 在来宾 VM 上执行 .bat
我使用 VBoxManage:Oracle VM VirtualBox 命令行管理界面版本 5.1.18,
在尝试从主机远程执行 .bat 文件时,我尝试了以下命令:
但它似乎不起作用,我收到以下错误:
有人对如何在来宾 VM 上远程运行 .bat 有任何建议吗?
salt - 如何使用 salt-ssh 在远程运行 shell 脚本
我的 Web 服务器会根据复杂的用户选择生成一个包含 100 多行代码的 shell 脚本。我需要使用 salt-ssh 在多台机器上进行编排。我需要的是将此shell脚本复制到远程并从那里为所有设备执行它。如何做到这一点salt-ssh
?我无法在远程设备上安装 minions。
linux - ssh 远程命令未按预期工作(读取问题)
我的服务器上有一个脚本,名为test.sh
:
当我手动通过 ssh 运行它时,我看到了这个:
当我将它作为 ssh 远程命令运行时,我看到:
我对这个输出不满意,因为它缺少Select an option [1-4]:
提示字符串,而我派生的原始脚本test.sh
包含很多这样的交互式对话字符串,我需要它们。
我知道read
打印它的提示,stderr
所以我尝试使用以下命令启动脚本,以防 stderr 被省略,但输出保持不变:
为什么会发生这种情况以及如何使 ssh 远程命令按预期工作?
UPD
我已将其更改test.sh
为:
但输出仍然缺少提示字符串:
jmeter - 使用 JMeter 从站时如何计算吞吐量?
假设我有一个 JMeter 测试脚本,该脚本的吞吐量恒定为每分钟 200 个事务(运行线程),并且我有两个由 JMeter 主机控制的从机来执行该脚本,结果吞吐量会翻倍还是 JMeter 共享从站之间的负载,导致仍然 200TPM?
干杯,凯
ssh - 如何在远程服务器上运行本地鱼脚本?
使用 ssh 和 bash,可以在远程服务器上运行本地 bash 脚本:
假设 fish 安装在远程服务器上,在远程服务器上运行本地 fish 脚本的等效命令是什么?
powershell - 设置项目属性物理路径
远程执行设置physicalPath
出错,并显示以下消息:
找不到驱动器。名为“IIS”的驱动器不存在。
以下有什么问题?
linux - Early termination when invoking subshell
I am running a remote bash script on RHL7, via ssh. The script invokes several unix commands using su. All the commands in the script run fine until I kick off another script (installer), which is provided by a third party. This second script performs a number of operations, then finally invokes yet another script (install), this one is sh. As soon as the subscript is called, everything terminates with
I have tried several methods to invoke script2, including:
I have also tried
Any suggestions will be appreciated.enter code here