1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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()
|
本文转自 小小三郎1 51CTO博客,原文链接:http://blog.51cto.com/wsxxsl/1956456,如需转载请自行联系原作者