码迷,mamicode.com
首页 > 编程语言 > 详细

python远程执行命令

时间:2017-08-15 22:58:31      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:py

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()

本文出自 “砖家博客” 博客,请务必保留此出处http://wsxxsl.blog.51cto.com/9085838/1956456

python远程执行命令

标签:py

原文地址:http://wsxxsl.blog.51cto.com/9085838/1956456

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!