httpd linux 安全性和用户 root

httpd linux 安全性和用户 root

在我的 httpd.conf 上,我使用端口 8089 和用户组 apache

我还将 443 端口 https 更改为 4444

但我看到一个进程属于 root,出于安全原因,我想要

只有 apache 用户进程..

ps said

root      9675     1  0 19:44 ?        00:00:00 /usr/sbin/httpd -k start
apache    9769  9675  0 19:44 ?        00:00:00 /usr/sbin/httpd -k start
apache    9770  9675  0 19:44 ?        00:00:00 /usr/sbin/httpd -k start
apache    9771  9675  0 19:44 ?        00:00:00 /usr/sbin/httpd -k start

答案1

父 httpd 进程必须以 root 身份运行,因为它需求能够执行只有 root 才能执行的操作。此过程才不是通过网络进行通信,不应被视为安全责任。

相关内容