我用google搜索“python ssh”。有一个很棒的模块pexpect
,它可以使用ssh(带密码)访问远程计算机。
连接远程计算机后,我可以执行其他命令。但是我无法再次在python中获得结果。
p = pexpect.spawn("ssh user@remote_computer")
print "connecting..."
p.waitnoecho()
p.sendline(my_password)
print "connected"
p.sendline("ps -ef")
p.expect(pexpect.EOF) # this will take very long time
print p.before
如何在我的案例中获得ps -ef
的结果?
答案 0 :(得分:8)
你有没有尝试过更简单的方法?
>>> from subprocess import Popen, PIPE
>>> stdout, stderr = Popen(['ssh', 'user@remote_computer', 'ps -ef'],
... stdout=PIPE).communicate()
>>> print(stdout)
当然,这只有效,因为我ssh-agent
预先加载了远程主机知道的私钥。
答案 1 :(得分:3)
child = pexpect.spawn("ssh user@remote_computer ps -ef")
print "connecting..."
i = child.expect(['user@remote_computer\'s password:'])
child.sendline(user_password)
i = child.expect([' .*']) #or use i = child.expect([pexpect.EOF])
if i == 0:
print child.after # uncomment when using [' .*'] pattern
#print child.before # uncomment when using EOF pattern
else:
print "Unable to capture output"
Hope this help..
答案 2 :(得分:1)
尝试发送
p.sendline("ps -ef\n")
答案 3 :(得分:1)
您可能还想调查paramiko这是另一个Python的SSH库。