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条)

报告相同问题?

悬赏问题

  • ¥30 python代码,帮调试
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条