如何执行' su'使用parallel-ssh的命令

时间:2018-05-29 13:38:53

标签: python linux stdin root parallel-ssh

我想使用parallel-ssh登录两台主机并执行su命令。然后我想打印出whoami

来确认我是root用户

代码:

hosts = ['myHost1', 'myHost2']
client = ParallelSSHClient(hosts, user='myUser', password='myPassword')

output = client.run_command('su')

for host in output:
    stdin = output[host].stdin
    stdin.write('rootPassword\n')
    stdin.flush()

client.join(output)

output = client.run_command('whoami')

for host, host_output in output.items():
    for line in host_output.stdout:
        print("Host [%s] - %s" % (host, line))

结果:

Host [myHost1] - myUser
Host [myHost2] - myUser

显然,我期待输出中的root。 I am following the documentation.

我尝试使用所有不同的行结尾代替\n,但没有任何改变。 如何使用su执行parallel-ssh命令?

3 个答案:

答案 0 :(得分:1)

试试这个:

**def exec_command(hosts):
    strr = ""
    client = ParallelSSHClient(hosts, user='admin', password='admin_password')
    cmd = 'echo root_password |su -c "commmand" root'
    output = client.run_command(cmd)
    client.join()
    for host_out in output:
    for line in host_out.stdout:
        strr+=line+" "
    return strr
    **

'echo root_password |su -c "command" root'

答案 1 :(得分:0)

尝试将sudo=True放在run_command

的末尾
output = client.run_command(<..>, sudo=True)

docs

答案 2 :(得分:0)

事实证明,我想做的事情是无法实现的。

第一个问题

我在this post中发现所有命令都在他们自己的频道中。这意味着即使su成功,它也不会影响第二个命令。该帖子的作者建议运行

su -c whoami - root

第二个问题

我设法通过将host_output.stdout更改为host_output.stderr来进一步调试问题。事实证明我收到的错误以前未在终端上显示:

standard in must be a tty

此问题的可能解决方案是here。他们没有为我工作,但可能适合你。

对我来说,解决方法是允许所有主机root登录。然后在parallel-ssh中我以root身份登录并拥有所有权限。