如何从远程计算机获取控制台输出(ssh + python)

时间:2009-08-21 12:40:13

标签: python linux login ssh pexpect

我用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的结果?

4 个答案:

答案 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")
IIRC,您发送的文本是逐字解释的,因此另一台计算机可能正在等待您完成命令。

答案 3 :(得分:1)

您可能还想调查paramiko这是另一个Python的SSH库。