python利用paramiko连接远程服务器执行命令的方法


Posted in Python onOctober 16, 2017

python中的paramiko模块是用来实现ssh连接到远程服务器上的库,在进行连接的时候,可以用来执行命令,也可以用来上传文件。

1、得到一个连接的对象

在进行连接的时候,可以使用如下的代码:

def connect(host):
  'this is use the paramiko connect the host,return conn'
  ssh = paramiko.SSHClient()
  ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
  try:
#    ssh.connect(host,username='root',allow_agent=True,look_for_keys=True)
    ssh.connect(host,username='root',password='root',allow_agent=True)
    return ssh
  except:
    return None

在connect函数中,参数是一个主机的IP地址或者是主机名称,在执行这个方法之后,如果成功的连接到服务器,那么就会返回一个sshclient对象。

第一步是建立一个SSHClient的对象,然后设置ssh客户端允许连接不在know_host文件中的机器,然后就尝试连接服务器,在连接服务器的时候,可以使用两种方式:一种方式是使用秘钥的方式,也就是参数look_for_keys,这里用设置密码寻找,也可以直接使用密码的方式,也就是直接使用参数password,从而最后返回一个连接的对象。

2、 获取设置的命令

在进行paramiko连接之后,那么必须要得到需要执行的命令,如下代码所示:

def command(args,outpath):
  'this is get the command the args to return the command'
  cmd = '%s %s' % (outpath,args)
  return cmd

在参数中,一个是args,一个outpath,args表示命令的参数,而outpath表示为可执行文件的路径,例如/usr/bin/ls -l。在其中outpath也就是/usr/bin/ls ,而参数为-l

这个方法主要是用来组合命令,将分开的参数作为命令的一部分进行组装。

3、 执行命令

在连接过后,可以进行直接执行命令,那么就有了如下的函数:

def exec_commands(conn,cmd):
  'this is use the conn to excute the cmd and return the results of excute the command'
  stdin,stdout,stderr = conn.exec_command(cmd)
  results=stdout.read()
  return results

在此函数中,传入的参数一个为连接的对象conn,一个为需要执行的命令cmd,最后得到执行的结果,也就是stdout.read(),最后返回得到的结果

4、 上传文件

在使用连接对象的时候,也可以直接进行上传相关的文件,如下函数:

def copy_moddule(conn,inpath,outpath):
  'this is copy the module to the remote server'
  ftp = conn.open_sftp()
  ftp.put(inpath,outpath)
  ftp.close()
  return outpath

此函数的主要参数为,一个是连接对象conn,一个是上传的文件名称,一个上传之后的文件名称,在此必须写入完整的文件名称包括路径。

做法主要是打开一个sftp对象,然后使用put方法进行上传文件,最后关闭sftp连接,最后返回一个上传的文件名称的完整路径

5、 执行命令得到结果

最后就是,执行命令,得到返回的结果,如下代码:

def excutor(host,outpath,args):
  conn = connect(host)
  if not conn:
    return [host,None]
  exec_commands(conn,'chmod +x %s' % outpath)
  cmd =command(args,outpath)
  result = exec_commands(conn,cmd)
  print '%r' % result
  result = json.loads(result)
  return [host,result]

首先,进行连接服务器,得到一个连接对象,如果连接不成功,那么返回主机名和None,表示没有连接成功,如果连接成功,那么修改文件的执行权限,从而可以执行文件,然后得到执行的命令,最后,进行执行命令,得到结果,将结果用json格式表示返回,从而结果能得到一个美观的json格式,最后和主机名一起返回相关的信息

6、 测试代码

测试代码如下:

if __name__ == '__main__':
  print json.dumps(excutor('192.168.1.165','ls',' -l'),indent=4,sort_keys=True)
  print copy_module(connect('192.168.1.165'),'kel.txt','/root/kel.1.txt')
  exec_commands(connect('192.168.1.165'),'chmod +x %s' % '/root/kel.1.txt')

第一步测试命令执行,第二步测试上传文件,第三部测试修改上传文件的权限。

完整代码如下:

#!/usr/bin/env python
import json
import paramiko

def connect(host):
  'this is use the paramiko connect the host,return conn'
  ssh = paramiko.SSHClient()
  ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
  try:
#    ssh.connect(host,username='root',allow_agent=True,look_for_keys=True)
    ssh.connect(host,username='root',password='root',allow_agent=True)
    return ssh
  except:
    return None

def command(args,outpath):
  'this is get the command the args to return the command'
  cmd = '%s %s' % (outpath,args)
  return cmd

def exec_commands(conn,cmd):
  'this is use the conn to excute the cmd and return the results of excute the command'
  stdin,stdout,stderr = conn.exec_command(cmd)
  results=stdout.read()
  return results

def excutor(host,outpath,args):
  conn = connect(host)
  if not conn:
    return [host,None]
  #exec_commands(conn,'chmod +x %s' % outpath)
  cmd =command(args,outpath)
  result = exec_commands(conn,cmd)
  result = json.dumps(result)
  return [host,result]
def copy_module(conn,inpath,outpath):
    'this is copy the module to the remote server'
    ftp = conn.open_sftp()
    ftp.put(inpath,outpath)
    ftp.close()
    return outpath


if __name__ == '__main__':
    print json.dumps(excutor('192.168.1.165','ls',' -l'),indent=4,sort_keys=True)
    print copy_module(connect('192.168.1.165'),'kel.txt','/root/kel.1.txt')
    exec_commands(connect('192.168.1.165'),'chmod +x %s' % '/root/kel.1.txt')

主要就是使用python中的paramiko模块通过ssh连接linux服务器,然后执行相关的命令,并且将文件上传到服务器。

以上这篇python利用paramiko连接远程服务器执行命令的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python3.5+tesseract+adb实现西瓜视频或头脑王者辅助答题
Jan 17 Python
利用pandas读取中文数据集的方法
Jul 25 Python
Python实现拷贝/删除文件夹的方法详解
Aug 29 Python
基于Python3.6+splinter实现自动抢火车票
Sep 25 Python
Python数据结构之栈、队列及二叉树定义与用法浅析
Dec 27 Python
Python 中使用 PyMySQL模块操作数据库的方法
Nov 10 Python
Python实现结构体代码实例
Feb 10 Python
django 模型中的计算字段实例
May 19 Python
keras .h5转移动端的.tflite文件实现方式
May 25 Python
如何用Matplotlib 画三维图的示例代码
Jul 28 Python
Python调用jar包方法实现过程解析
Aug 11 Python
ASP.NET Core中的配置详解
Feb 05 Python
基于使用paramiko执行远程linux主机命令(详解)
Oct 16 #Python
python中文件变化监控示例(watchdog)
Oct 16 #Python
python中import reload __import__的区别详解
Oct 16 #Python
使用Python操作excel文件的实例代码
Oct 15 #Python
python出现"IndentationError: unexpected indent"错误解决办法
Oct 15 #Python
python 二分查找和快速排序实例详解
Oct 13 #Python
Python实现的排列组合计算操作示例
Oct 13 #Python
You might like
php printf输出格式使用说明
2010/12/05 PHP
20个PHP常用类库小结
2011/09/11 PHP
windows下PHP_intl.dll正确配置方法(apache2.2+php5.3.5)
2014/01/14 PHP
ThinkPHP3.1新特性之动态设置自动完成和自动验证示例
2014/06/19 PHP
php 使用fopen函数创建、打开文件详解及实例代码
2016/09/24 PHP
yii通过小物件生成view的方法
2016/10/08 PHP
Thinkphp5 如何隐藏入口文件index.php(URL重写)
2019/10/16 PHP
Docker 安装 PHP并与Nginx的部署实例讲解
2021/02/27 PHP
用JQUERY增删元素的代码
2012/02/14 Javascript
js中 关于undefined和null的区别介绍
2013/04/16 Javascript
按Enter键触发事件的jquery方法实现代码
2014/02/17 Javascript
javascript框架设计之类工厂
2015/06/23 Javascript
JQUERY实现网页右下角固定位置展开关闭特效的方法
2015/07/27 Javascript
jQuery中ajax错误调试分析
2016/12/01 Javascript
JavaScript无缝滚动效果的实例代码
2017/03/27 Javascript
React-intl 实现多语言的示例代码
2017/11/03 Javascript
Vuex实现计数器以及列表展示效果
2018/03/10 Javascript
Bootstrap实现模态框效果
2019/09/30 Javascript
Python中__name__的使用实例
2015/04/14 Python
virtualenv实现多个版本Python共存
2017/08/21 Python
matplotlib在python上绘制3D散点图实例详解
2017/12/09 Python
Python获取指定字符前面的所有字符方法
2018/05/02 Python
Python学习笔记之Django创建第一个数据库模型的方法
2019/08/07 Python
python用pip install时安装失败的一系列问题及解决方法
2020/02/24 Python
keras多显卡训练方式
2020/06/10 Python
关于tf.matmul() 和tf.multiply() 的区别说明
2020/06/18 Python
深入浅析Python代码规范性检测
2020/07/31 Python
全球最大的跑步用品商店:Road Runner Sports
2016/09/11 全球购物
丹麦优惠购物网站:PLUSSHOP
2019/03/24 全球购物
烹饪大赛策划方案
2014/05/26 职场文书
承诺函格式模板
2015/01/21 职场文书
老公婚前保证书
2015/02/28 职场文书
写作指导:怎么书写竞聘演讲稿?
2019/07/04 职场文书
为什么 Nginx 比 Apache 更牛逼
2021/03/31 Servers
基于Redis6.2.6版本部署Redis Cluster集群的问题
2022/04/01 Redis
字节飞书面试promise.all实现示例
2022/06/16 Javascript