PHP调用Linux命令权限不足问题解决方法

前端之家收集整理的这篇文章主要介绍了PHP调用Linux命令权限不足问题解决方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

业务背景: yourcmd为我的linux程序,它对权限要求非常严格,当用PHP去执行yourcmd程序

系统:CentOS 6.3

apache是PHP的执行用户

用exec函数去执行linux系统上的程序/usr/local/yourcmd/sbin/yourcmd

PHP代码如下:

代码如下:
PHP $conf_file = "/var/www/html/webroot/test.tmp"; $command = "sudo /usr/local/yourcmd/sbin/yourcmd -t -f {$conf_file}"; exec($command,$out); print_r($out);
测试结果为没有权限
代码如下:
sudo: no tty present and no askpass program specified )

解决步骤:

代码如下:
1)注释以下行
代码如下:
2)在文件末尾加入以下
代码如下:
最后测试结果
代码如下:
Warning: memory is too small: 1044725760 [1] => test configure is ok )

原文链接:https://www.f2er.com/php/22699.html

猜你在找的PHP相关文章