thinkphp Apache配置重启Apache1 restart 出错解决办法

前端之家收集整理的这篇文章主要介绍了thinkphp Apache配置重启Apache1 restart 出错解决办法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

概要:

  thinkPHP 在Apache上配置启用伪静态,重启Apache1 restart 竟然失败了,报错

    Job for httpd.service Failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details

  嗯,看状态

  执行命令

Failed (Result: exit-code) since 五 2016-08-26 11:13:09 CST; 6min ago Docs: man:httpd(8) man:apachectl(8) Process: 9915 ExecStop=/bin/kill -WINCH ${MAINPID} (code=exited,status=1/FAILURE) Process: 9913 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited,status=1/FAILURE) Main PID: 9913 (code=exited,status=1/FAILURE)

8月 26 11:13:09 cloud1.localdomain httpd[9913]: (98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
8月 26 11:13:09 cloud1.localdomain httpd[9913]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
8月 26 11:13:09 cloud1.localdomain httpd[9913]: no listening sockets available,shutting down
8月 26 11:13:09 cloud1.localdomain httpd[9913]: AH00015: Unable to open logs
8月 26 11:13:09 cloud1.localdomain systemd[1]: httpd.service: main process exited,code=exited,status=1/FAILURE
8月 26 11:13:09 cloud1.localdomain kill[9915]: kill: cannot find process ""
8月 26 11:13:09 cloud1.localdomain systemd[1]: httpd.service: control process exited,code=exited status=1
8月 26 11:13:09 cloud1.localdomain systemd[1]: Failed to start The Apache HTTP Server.
8月 26 11:13:09 cloud1.localdomain systemd[1]: Unit httpd.service entered Failed state.
8月 26 11:13:09 cloud1.localdomain systemd[1]: httpd.service Failed.

从上可以看到,80端口被占用了

执行journalctl -xe

Failed to start The Apache HTTP Server. -- Subject: Unit httpd.service has Failed -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit httpd.service has Failed. -- -- The result is Failed. 8月 26 11:13:09 cloud1.localdomain systemd[1]: Unit httpd.service entered Failed state. 8月 26 11:13:09 cloud1.localdomain systemd[1]: httpd.service Failed. 8月 26 11:13:09 cloud1.localdomain polkitd[1171]: Unregistered Authentication Agent for unix-process:9908:450142261 (system bus name :1.19686,object path /org/freedesktop/PolicyKit1/Authenticatio

上面这是查看日志

查看Apache中的 httpd-vhosts.conf 文件,发现Listen 80 两次,httpd-vhosts.conf一次,httpd.conf一次

虚拟机里的加个#Listen 80 OK解决

文件夹的含义

    extra的意思是额外扩展

    original的意思是源目录文件

    original文件夹是配置文件的源文件备份,而真正要配置的是conf目录下的httpd.conf文件以及extra目录的额外扩展配置。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持

原文链接:https://www.f2er.com/thinkphp/17953.html

猜你在找的ThinkPHP相关文章