dongxuanyi3406 2018-10-12 18:12
浏览 111
已采纳

使用apache通过php执行shell脚本时,当前用户和env用户不匹配

I'm running Apache on a Linux server. There are a collection of shell scripts that need to get executed by a PHP script. Apache/PHP on the server is only needed for this one purpose. The shell scripts must be executed by user "X". I've set the User and Group properties in httpd.conf to be for user "X" and its group.

When I call the PHP script, I've included an echo of whoami. It shows user "X". I've also included an output to log file in the shell script that PHP executes that echos whoami and env variables. When the shell script runs, it reports that the user is "X", but the env variables output shows the user to be ROOT. How is this possible? This is ultimately a problem as the shell script won't run properly if it doesn't have access to the env variables for user "X".

[edit] Further clarification. The issue exists at the PHP script level too, so to simplify things, I can rephrase the issue that when I have Apache configured in httpd.conf to run as user "X", and if I trigger a PHP script that echos "whoami" and "env", then I see that "whoami" is user "X" but the "env" details are for user "root". the PHP script would look something like this...

<?php
echo "<br>". exec('whoami');
exec('env', $envo);
echo "<br>". print_r($envo);
?>
  • 写回答

2条回答 默认 最新

  • duangan6731 2018-10-13 01:20
    关注

    whoami prints the effective user id.

    When you start Apache, I guess you do it using the root user, or with some sudo rule. This is required to let Apache bind ports below 1024 (so the default 80 HTTP or 443 HTTPS qualify).

    In your Apache config, you put User X (and probably Group X). This tells Apache that once the first process is started (via root), all other children processes will run under the X:X user and group.

    So in your PHP code, when you run whoami it returns the effective ID of the process PHP runs in. This is X, since the process is a child of the first process.

    But when you run env it runs the environment under which the child process was started. This environment was inherited from the first process, which is started by root. Hence you see the env of root.

    Your fix is ok.

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

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀