centos7:从php(sudo)运行.sh脚本

时间:2018-12-21 15:12:10

标签: php linux apache centos sudo

我想像root用户一样从php运行脚本

因此在php中,我使用此

 $output = shell_exec('sudo /usr/bin/sh  /var/www/kill.sh');
 echo "<pre>$output</pre>";

现在在centos7中,我运行 vim / etc / sudoers ,并在文件末尾粘贴了此

apache ALL=(ALL) NOPASSWD: ALL 
then i restart: systemctl restart httpd

但不起作用

  

我也尝试了这个方法: shell_exec('ls') shell_exec('sudo ls')   不起作用

0 个答案:

没有答案