python远程执行命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python远程执行命令相关的知识,希望对你有一定的参考价值。
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远程执行命令的主要内容,如果未能解决你的问题,请参考以下文章