Linux下的start.sh文件,在使用xshell连接后可以启动,使用Python脚本远程启动没反应,求问大神
Python脚本如下:
import paramiko,sys
ip = sys.argv[1]
service = sys.argv[2]
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
ssh.connect(hostname=ip, port=22, username='root', password='123456')
ssh.exec_command('cd /data/wwwroot/%s/bin/;sh start.sh'%(service))
ssh.close()
标签:
cd /data/wwwroot/%s/bin/后
sh start.sh'%(service)) 这个sh启动的是独立的shell,如果环境变量不能继承的话【和你的系统设置有关】,那路径可能不对,可以在start.sh中写点日志查看下原因
ssh.exec_command的返回和输出应该也有线索
加了一下source /etc/profile; ,在当前文件夹下执行sh文件,就可以了,具体如下:
source /etc/profile; sh /data/wwwroot/%s/bin/start.sh