用python SSH模块登录,并在远程机执行shell命令
(在CentOS 7 环境试验成功, Redhat 系列应该是兼容的。)
先安装必须的模块
1
2
3
4
5
|
# yum install python-dev
# yum install python-devel
# pip install pycrypto
# pip install paramiko
# pip install ssh
|
这些都成功后, 编写一个Python脚本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# vim remote_run.py
import ssh
# 新建一个ssh客户端对象
myclient = ssh.SSHClient()
# 设置成默认自动接受密钥
myclient.set_missing_host_key_policy(ssh.AutoAddPolicy())
# 连接远程主机
myclient.connect( "xxx.coder4.com" , port = 22 , username = "xxxx" , password = "xxxx" )
# 在远程机执行shell命令
stdin, stdout, stderr = client.exec_command( "ls -l" )
# 读返回结果
print stdout.read()
# 在远程机执行python脚本命令
stdin, stdout, stderr = client.exec_command( "python /home/test.py" )
|
建立一个SSHClient对象以后,除了执行命令,还可以开启一个sftp的session,用于传输文件、创建文件夹等等。
1
2
3
4
5
6
7
8
9
10
11
|
# 新建 sftp session
sftp = client.open_sftp()
# 创建目录
sftp.mkdir( 'abc' )
# 从远程主机下载文件,如果失败, 这个可能会抛出异常。
sftp.get( 'test.sh' , '/home/testl.sh' )
# 上传文件到远程主机,也可能会抛出异常
sftp.put( '/home/test.sh' , 'test.sh' )
|