import paramiko def sshclient_execmd(hostname, port, username, password, execmd): paramiko.util.log_to_file("paramiko.log") s = paramiko.SSHClient() s.set_missing_host_key_policy(paramiko.AutoAddPolicy()) s.connect(hostname=hostname, port=port, username=username, password=password) stdin, stdout, stderr = s.exec_command (execmd) stdin.write("Y") print stdout.read() s.close() def main(): hostname = '192.168.56.11' port = 22 username = 'root' password = '123456' execmd1 = "/root/tomcat/bin/stop.sh" execmd2 = "/root/tomcat/bin/start.sh" sshclient_execmd(hostname, port, username, password, execmd1) sshclient_execmd(hostname, port, username, password, execmd2) if __name__ == "__main__": main()
網(wǎng)頁(yè)題目:python遠(yuǎn)程執(zhí)行命令
標(biāo)題網(wǎng)址:http://aaarwkj.com/article12/igscdc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)公司、網(wǎng)站建設(shè)、微信公眾號(hào)、做網(wǎng)站、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)