繁体   English   中英

使用子进程从python执行时ssh不被识别为命令?

[英]ssh not recognized as a command when executed from python using subprocess?

这是我的代码 -

import subprocess
import sys

HOST="xyz3511.uhc.com"
# Ports are handled in ~/.ssh/config since we use OpenSSH
COMMAND="uptime"

ssh = subprocess.Popen(["ssh", "%s" % HOST, COMMAND],
                       shell=True,
                       stdout=subprocess.PIPE,
                       stderr=subprocess.PIPE)
result = ssh.stdout.readlines()
if result == []:
    error = ssh.stderr.readlines()
    print (sys.stderr, "ERROR: %s" % error)
else:
    print (result)

这是我得到的错误 -

错误:[b“'ssh'不被识别为内部或外部命令,\\ r \\ n”,b'可操作程序或批处理文件。\\ r \\ n']。

不知道我在这里做错了什么。 另外,我还没有提到任何端口。 我想要的只是使用子进程并连接到远程服务器,执行像ls这样的简单命令。 Python版本是3.x.

显然这发生在python3中。 在此链接中找到解决方法: https//gist.github.com/bortzmeyer/1284249

system32 = os.path.join(os.environ['SystemRoot'], 'SysNative' if platform.architecture()[0] == '32bit' else 'System32')
ssh_path = os.path.join(system32, 'OpenSSH/ssh.exe')
out1, err1 = Popen([ssh_path, "pi@%s"%self.host, "%s"%cmd],
              shell=False,
              stdout=PIPE, 
              stderr=PIPE).communicate()

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM