当前位置:  开发笔记 > 编程语言 > 正文

使用Python在ssh上执行命令

如何解决《使用Python在ssh上执行命令》经验,为你挑选了5个好方法。

我正在编写一个脚本来自动化Python中的一些命令行命令.此刻我正在打电话:

cmd = "some unix command"
retcode = subprocess.call(cmd,shell=True)

但是我需要在远程计算机上运行一些命令.手动,我会使用ssh登录然后运行命令.我如何在Python中自动执行此操作?我需要使用(已知的)密码登录到远程机器,所以我不能只使用cmd = ssh user@remotehost,我想知道是否有一个我应该使用的模块?



1> shahjapan..:

我会把你推荐给paramiko

看到这个问题

ssh = paramiko.SSHClient()
ssh.connect(server, username=username, password=password)
ssh_stdin, ssh_stdout, ssh_stderr = ssh.exec_command(cmd_to_execute)


如果你正在使用SSH密钥,首先使用EITHER准备密钥文件:`k = paramiko.RSAKey.from_private_key_file(keyfilename)`或`k = paramiko.DSSKey.from_private_key_file(keyfilename)`那么`ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy( ))``最后`ssh..connect(hostname = host,username = user,pkey = k)`.
作为Paramiko的长期用户(但不是专家),我可以建议使用Paramiko但你应该考虑你的用例以及你愿意学习多少.Paramiko是非常低级的,你很容易陷入陷阱,在这个陷阱中你创建了一个"命令运行辅助函数"而没有完全理解你正在使用的代码.这意味着你可能会设计一个`def run_cmd(host,cmd):`它最初会做你想要的,但是你的需求在不断变化.您最终会更改新用例的帮助程序,这会更改旧的现有用法的行为.相应地计划.
对于未知的主机错误,请执行以下操作:ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
这里的假设是paramiko和(open)ssh一样安全.是吗?

2> powerrox..:

或者你可以使用commands.getstatusoutput:

   commands.getstatusoutput("ssh machine 1 'your script'")

我广泛使用它,效果很好.

在Python 2.6+中,使用subprocess.check_output.


+1是一个简单的内置方法.在我目前的设置中,我不想添加Python库,因此您的建议很有价值,也非常简单.
只需确保您的远程主机设置为无密码ssh,否则,您必须执行其他操作来管理身份验证
@powerrox那些“其他东西”是什么?
@TimS.您可能必须通过适合您的设置的任何方式包括身份验证处理.我用过期望在提示符下输入密码.然后有这个线程与其他解决方案:http://unix.stackexchange.com/questions/147329/answer-password-prompt-programmatically-via-shell-script

3> supersighs..:

你看过Fabric吗?它允许您使用python通过SSH执行各种远程操作.



4> Michael Will..:

我发现paramiko有点太低级了,而且Fabric不太适合用作库,所以我把我自己的库叫做spur,使用paramiko来实现一个稍微好一点的界面:

import spur

shell = spur.SshShell(hostname="localhost", username="bob", password="password1")
result = shell.run(["echo", "-n", "hello"])
print result.output # prints hello

如果你需要在shell中运行:

shell.run(["sh", "-c", "echo -n hello"])


我决定尝试'刺激'.您生成其他shell命令,最终得到:'mkdir'>/dev/null 2>&1; echo $?; exec'mkdir''-p''/ data/rpmupdate/20130207142923'.我想访问一个普通的`exec_command`.还缺少运行后台任务的能力:`nohup ./bin/rpmbuildpackages &/ dev/null&`.例如,我使用模板生成一个zsh脚本(rpmbuildpackages)然后我只是让它在机器上运行.也许能够监控这样的后台工作也很好(在某些〜/ .spur中保存PID).

5> IAmSurajBoba..:

所有人都已经说过(推荐)使用paramiko,我只是共享一个python代码(API可能会说),它允许你一次执行多个命令.

在不同节点上执行命令: Commands().run_cmd(host_ip, list_of_commands)

您将看到一个TODO,如果任何命令无法执行,我会一直停止执行,我不知道该怎么做.请分享你的知识

#!/usr/bin/python

import os
import sys
import select
import paramiko
import time


class Commands:
    def __init__(self, retry_time=0):
        self.retry_time = retry_time
        pass

    def run_cmd(self, host_ip, cmd_list):
        i = 0
        while True:
        # print("Trying to connect to %s (%i/%i)" % (self.host, i, self.retry_time))
        try:
            ssh = paramiko.SSHClient()
            ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
            ssh.connect(host_ip)
            break
        except paramiko.AuthenticationException:
            print("Authentication failed when connecting to %s" % host_ip)
            sys.exit(1)
        except:
            print("Could not SSH to %s, waiting for it to start" % host_ip)
            i += 1
            time.sleep(2)

        # If we could not connect within time limit
        if i >= self.retry_time:
            print("Could not connect to %s. Giving up" % host_ip)
            sys.exit(1)
        # After connection is successful
        # Send the command
        for command in cmd_list:
            # print command
            print "> " + command
            # execute commands
            stdin, stdout, stderr = ssh.exec_command(command)
            # TODO() : if an error is thrown, stop further rules and revert back changes
            # Wait for the command to terminate
            while not stdout.channel.exit_status_ready():
                # Only print data if there is data to read in the channel
                if stdout.channel.recv_ready():
                    rl, wl, xl = select.select([ stdout.channel ], [ ], [ ], 0.0)
                    if len(rl) > 0:
                        tmp = stdout.channel.recv(1024)
                        output = tmp.decode()
                        print output

        # Close SSH connection
        ssh.close()
        return

def main(args=None):
    if args is None:
        print "arguments expected"
    else:
        # args = {'', }
        mytest = Commands()
        mytest.run_cmd(host_ip=args[0], cmd_list=args[1])
    return


if __name__ == "__main__":
    main(sys.argv[1:])

谢谢!

推荐阅读
mobiledu2402851203
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有