我正在尝试检查远程计算机上是否存在可执行文件,然后运行所说的可执行文件.为此,我正在使用子进程来运行ssh< host>. ls< file> ;,如果成功,请运行ssh< host> <文件> ;. ssh当然要求输入密码,我想自动提供该密码.另外,我想从ls中获取返回码,并从运行命令中获取stdout和stderr.
因此,我知道需要用到communication()方法来避免死锁,但是我无法获得Popen(stdin)可以识别的密码.另外我正在使用Python 2.4.3,并停留在该版本上.这是到目前为止我得到的代码:
import os
import subprocess as sb
def WallHost(args):
#passwd = getpass.getpass()
passwd = "password"
for host in args:
# ssh to the machine and verify that the script is in /usr/bin
sshLsResult = sb.Popen(["ssh", host, "ls", "/usr/bin/wall"], stdin=sb.PIPE, stderr=sb.PIPE, stdout=sb.PIPE)
(sshLsStdout, sshLsStderr) = sshLsResult.communicate(input=passwd)
sshResult = sshLsResult.returncode
if sshResult != 0:
raise "wall is not installed on %s. Please check." % host
else:
sshWallResult = sb.Popen(["ssh", host, "/usr/bin/wall", "hello world"], stdin=sb.PIPE, stderr=sb.PIPE, stdout=sb.PIPE)
(sshWallStdout, sshWallStderr) = sshWallResult.communicate(input=passwd)
print "sshStdout for wall is \n%s\nsshStderr is \n\n" % (sshWallStdout, sshWallStderr)
args = ["127.0.0.1", "192.168.0.1", "10.10.265.1"]
WallHost(args)
感谢您提供任何帮助您接受密码的过程.或者,如果您有更好的方法来检查可执行文件,然后在远程主机上运行它.