欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

httpd No such file or directory 报错

程序员文章站 2022-03-08 19:27:39
...
[[email protected] conf]# systemctl status httpd.service
● httpd.service - The Apache HTTP Server
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
   Active: failed (Result: exit-code) since 二 2018-08-21 18:30:16 CST; 3min 50s ago
     Docs: man:httpd(8)
           man:apachectl(8)
 Main PID: 1828 (code=exited, status=1/FAILURE)

821 18:30:16 ambari001 systemd[1]: Starting The Apache HTTP Server...
821 18:30:16 ambari001 httpd[1828]: (2)No such file or directory: AH02291: Cannot access directory '/etc/httpd/logs/' for main error log
821 18:30:16 ambari001 httpd[1828]: AH00014: Configuration check failed
821 18:30:16 ambari001 systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE
821 18:30:16 ambari001 kill[1830]: kill: cannot find process ""
821 18:30:16 ambari001 systemd[1]: httpd.service: control process exited, code=exited status=1
821 18:30:16 ambari001 systemd[1]: Failed to start The Apache HTTP Server.
821 18:30:16 ambari001 systemd[1]: Unit httpd.service entered failed state.
821 18:30:16 ambari001 systemd[1]: httpd.service failed.
  • 解决
rm -rf /etc/httpd/logs
mkdir -p /etc/httpd/logs
systemctl start httpd.service