dsuoedtom207012191 2018-03-04 13:44
浏览 86
已采纳

通过php和bash执行服务命令

I want to start a bash script from a html page. This script is supposed to modify a file and reload asterisk service. I'm using PHP to do so.

My php script :

<?php
$field1 = $_GET["P1"];
$field2 = $_GET["P2"];
$field3 = $_GET["P3"];
echo "$field1 $field2 $field3 ";
$output = shell_exec("/var/www/html/script.sh $field1 $field2 $field3");
echo "<pre>$output</pre>";
?>

And my bash script :

#!/bin/bash
num1=$1
num2=$2
num3=$3
for i in 1 2 3
do
    temp="num$i"
    if [ -z  ${!temp} ]
    then
        :
    else
        echo "${!temp}" >> /etc/asterisk/file.conf
    fi
done
sudo service asterisk reload

I tried adding apache to /etc/sudoers, it doesn't work, not even with the ALL ALL=NOPASSWD: ALL rule.

I'm stuck with this issue and can't get it working properly. The script by itself is running properly, only the reload part isn't working.

Can someone tell me what to do ? (I'm running CentOS 6.6 with httpd)

  • 写回答

2条回答 默认 最新

  • dpbv85276 2018-03-05 09:39
    关注

    require tty was set in sudoers file, avoiding the command to be executed by apache.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改