利用sshpass和ssh编写脚本远程执行命令
import subprocess
import os
(rfd, wfd) = os.pipe()
arg = "-d%d" % rfd
try:
p = subprocess.Popen(["sshpass",arg,"ssh","-l","haohzhang","phxaishdc9dn1447.stratus.phx.ebay.com","ls","/tmp/"], stdin=subprocess.PIPE,stdout=subprocess.PIPE, stderr=subprocess.PIPE)
os.close(rfd)
os.write(wfd,"PASSWORD\n")
os.close(wfd)
stdout, stderr = p.communicate()
print stdout, stderr
except OSError:
print("to use the 'ssh' connection type with passwords, you must install the sshpass program")
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。