利用paramiko庫執(zhí)行命令時(shí)如何在超出給定的時(shí)間后強(qiáng)制退出?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
成都創(chuàng)新互聯(lián)主要從事網(wǎng)站建設(shè)、網(wǎng)站制作、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)安澤,十多年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):028-86922220實(shí)現(xiàn)方式:
線程+事件,在線程中執(zhí)行ssh命令,給事件配置超時(shí)時(shí)間。
1 from threading import Thread, Event
2 import paramiko
class SshClient(object): def __init__(self, ip, port, username, password): self.ip = ip self.host = host self.username = username self.password = password def exec_command(cmd, timeout): log.info(u"在ip:%s上執(zhí)行命令%s" % (self.ip, cmd)) sc = paramiko.SSHClient() sc.set_missing_host_key_policy(paramiko.AutoAddPolicy()) # 用來接收stdout stderror status信息 res = [None, None, None] def get_return(start_event, res_list): _, cmd_stdout, cmd_stderr = sc.exec_command(command=cmd, timeout=timeout) channel = cmd_stdout.channel cmd_status = channel.recv_exit_status() res_list[0] = cmd_stdout res_list[1] = cmd_stderr res_list[2] = cmd_status start_event.set() # 表示線程已經(jīng)執(zhí)行完畢 try: sc.connect(hostname=self.ip, port=self.port, username=self.username, password=self.password, timeout=30) # 這里的timeout是連接使用的,與我們要的不同 start_evt = Event() t = Thread(target=get_return, args=(start_evt, res)) t.start() start_evt.wait(timeout=timeout) # 執(zhí)行到這里說明線程已經(jīng)退出 if None in res: raise Exception(u"命令超時(shí)退出") stdout, stderr, status = res if status != 0: raise Exception(u"命令執(zhí)行返回非0!返回值為%s,錯(cuò)誤信息為%s" % (status, stdout.read() + stderr.read())) return stdout.read() + stderr.read() finally: sc.close() }
知識(shí)點(diǎn)補(bǔ)充:
python paramiko的使用介紹
#設(shè)置ssh連接的遠(yuǎn)程主機(jī)地址和端口
t=paramiko.Transport((ip,port))
#設(shè)置登錄名和密碼
t.connect(username=username,password=password)
#連接成功后打開一個(gè)channel
chan=t.open_session()
#設(shè)置會(huì)話超時(shí)時(shí)間
chan.settimeout(session_timeout)
#打開遠(yuǎn)程的terminal
chan.get_pty()
#激活terminal
chan.invoke_shell()
然后就可以通過chan.send('command')和chan.recv(recv_buffer)來遠(yuǎn)程執(zhí)行命令以及本地獲取反饋。
paramiko有兩個(gè)模塊SSHClient()和SFTPClient()
SSHClient()的使用代碼:
import paramiko ssh = paramiko.SSHClient() # 創(chuàng)建SSH對(duì)象 # 允許連接不在know_hosts文件中的主機(jī) ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy()) # 連接服務(wù)器 ssh.connect(hostname='192.168.2.103', port=22, username='root', password='123456') stdin, stdout, stderr = ssh.exec_command('ls') # 執(zhí)行命令 result = stdout.read() # 獲取命令結(jié)果 print (str(result,encoding='utf-8')) ssh.close() # 關(guān)閉連接
SSHClient()里有個(gè)transport變量,是用于獲取連接,我們也可單獨(dú)的獲取到transport變量,然后執(zhí)行連接操作
import paramiko transport = paramiko.Transport(('192.168.2.103', 22)) transport.connect(username='root', password='123456') ssh = paramiko.SSHClient() ssh._transport = transport stdin, stdout, stderr = ssh.exec_command('df') print (str(stdout.read(),encoding='utf-8')) transport.close()
用transport實(shí)現(xiàn)上傳下載以及命令的執(zhí)行:
#coding:utf-8 import paramiko import uuid class SSHConnection(object): def __init__(self, host='192.168.2.103', port=22, username='root',pwd='123456'): self.host = host self.port = port self.username = username self.pwd = pwd self.__k = None def connect(self): transport = paramiko.Transport((self.host,self.port)) transport.connect(username=self.username,password=self.pwd) self.__transport = transport def close(self): self.__transport.close() def upload(self,local_path,target_path): # 連接,上傳 # file_name = self.create_file() sftp = paramiko.SFTPClient.from_transport(self.__transport) # 將location.py 上傳至服務(wù)器 /tmp/test.py sftp.put(local_path, target_path) def download(self,remote_path,local_path): sftp = paramiko.SFTPClient.from_transport(self.__transport) sftp.get(remote_path,local_path) def cmd(self, command): ssh = paramiko.SSHClient() ssh._transport = self.__transport # 執(zhí)行命令 stdin, stdout, stderr = ssh.exec_command(command) # 獲取命令結(jié)果 result = stdout.read() print (str(result,encoding='utf-8')) return result ssh = SSHConnection() ssh.connect() ssh.cmd("ls") ssh.upload('s1.py','/tmp/ks77.py') ssh.download('/tmp/test.py','kkkk',) ssh.cmd("df") ssh.close()
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,的支持。
網(wǎng)站名稱:利用paramiko庫執(zhí)行命令時(shí)如何在超出給定的時(shí)間后強(qiáng)制退出-創(chuàng)新互聯(lián)
轉(zhuǎn)載來源:http://aaarwkj.com/article48/codiep.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、移動(dòng)網(wǎng)站建設(shè)、網(wǎng)站排名、搜索引擎優(yōu)化、網(wǎng)站營銷、網(wǎng)頁設(shè)計(jì)公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)