我正在尝试切换到" apache"用户在我的Python脚本中运行命令。我已经尝试了很多其他答案的组合,并且不能让它工作。以下是我尝试过的事情 -
这个导致我的终端挂起 -
command = "sudo su - apache && touch ~/testfile.txt"
for email in emailList:
client = paramiko.SSHClient()
client.set_missing_host_key_policy(paramiko.client.AutoAddPolicy())
privatekeyfile = '/home/myuser/.ssh/id_rsa2'
username ="myuser"
mykey = paramiko.RSAKey.from_private_key_file(privatekeyfile)
client.connect(hostname='123.456.11.11',username=username, pkey = mykey)
stdin, stdout, stderr = client.exec_command(command)
gracefulout = stdout.read()
print gracefulout
将命令更改为 -
command = "sudo su - apache -c 'touch testfile.txt'"
导致它无所作为。
sudo -u apache; whoami
之类的变化不会导致输出任何内容。 subprocess.call([command], stdout=subprocess.PIPE, shell=True)
导致无法输出任何内容或导致shell挂起。
也尝试了这个 -
ssh = subprocess.Popen(["ssh", HOST, COMMAND],
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
result = ssh.stdout.readlines()
if result == []:
error = ssh.stderr.readlines()
print sys.stderr, "ERROR: %s" % error
else:
print result
收到错误 -
ERROR: ['usage: ssh [-1246AaCfgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n', ' [-D [bind_address:]port] [-e escape_char] [-F configfile]\n', ' [-I pkcs11] [-i identity_file]\n', ' [-L [bind_address:]port:host:hostport]\n', ' [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n', ' [-R [bind_address:]port:host:hostport] [-S ctl_path]\n', ' [-W host:port] [-w local_tun[:remote_tun]]\n', ' [user@]hostname [command]\n']
在python中切换到不同的(非root用户)并运行命令的方法是什么?
感谢。
答案 0 :(得分:0)
最终,我们通过运行以下命令来修复此问题 -
command = 'php -r "print json_encode(array('test@test.com'));" | /usr/local/bin/drush --alias-path=/home/me/drush_aliases @'+alias+'.'+env+' --root=/var/www/html/docroot vset --format=json update_notify_emails -'
stdin, stdout, stderr = client.exec_command(command)
drushoutput = stdout.read()
print(drushoutput)
client.close()