首頁 > 後端開發 > Python教學 > python使用paramiko連接遠端伺服器執行命令的範例程式碼

python使用paramiko連接遠端伺服器執行命令的範例程式碼

黄舟
發布: 2017-10-16 11:02:41
原創
2121 人瀏覽過

下面小編就為大家帶來一篇python利用paramiko連接遠端伺服器執行指令的方法。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧

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連接遠端伺服器執行命令的範例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板