我希望在名为app_user的用户下运行apache。为此,我在httpd.conf文件中更改了以下内容
User app_user
Group app_user
app_user是此服务器上的有效用户和组。
app_user具有在/ var / log / httpd目录中写入的正确权限。
现在,当我启动apache时,它给了我这个错误。
[app_user@localhost conf]$ service httpd start
Starting httpd: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain for ServerName
(13)Permission denied: make_sock: could not bind to address [::]:80
(13)Permission denied: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
[FAILED]
对此表示感谢。
答案 0 :(得分:1)
答案 1 :(得分:0)
根目录应该启动apache主进程来绑定较低的端口,但是,如果您要为子进程使用不同的用户/组,则可以通过 APACHE_RUN_USER 和 APACHE_RUN_GROUP 环境进行配置变量。 检查/etc/apache2/apache2.conf:
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}