thinkphp Apache配置重啟Apache1 restart 出錯解決辦法
概要:
thinkphp 在Apache上配置啟用偽靜態(tài),重啟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
嗯,看狀態(tài)
執(zhí)行命令 systemctl status httpd.service
[root@cloud1 bin]# systemctl status httpd.service ● httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled) Active: 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端口被占用了
執(zhí)行journalctl -xe
[root@cloud1 bin]# journalctl -xe -- -- Unit session-9830.scope has finished starting up. -- -- The start-up result is done. 8月 26 11:01:01 cloud1.localdomain systemd[1]: Starting Session 9830 of user root. -- Subject: Unit session-9830.scope has begun start-up -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit session-9830.scope has begun starting up. 8月 26 11:01:01 cloud1.localdomain CROND[9744]: (root) CMD (run-parts /etc/cron.hourly) 8月 26 11:01:01 cloud1.localdomain run-parts(/etc/cron.hourly)[9747]: starting 0anacron 8月 26 11:01:01 cloud1.localdomain run-parts(/etc/cron.hourly)[9753]: finished 0anacron 8月 26 11:01:01 cloud1.localdomain run-parts(/etc/cron.hourly)[9755]: starting 0yum-hourly.cron 8月 26 11:01:01 cloud1.localdomain run-parts(/etc/cron.hourly)[9759]: finished 0yum-hourly.cron 8月 26 11:10:01 cloud1.localdomain systemd[1]: Started Session 9831 of user root. -- Subject: Unit session-9831.scope has finished start-up -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit session-9831.scope has finished starting up. -- -- The start-up result is done. 8月 26 11:10:01 cloud1.localdomain systemd[1]: Starting Session 9831 of user root. -- Subject: Unit session-9831.scope has begun start-up -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit session-9831.scope has begun starting up. 8月 26 11:10:01 cloud1.localdomain CROND[9870]: (root) CMD (/usr/lib64/sa/sa1 1 1) 8月 26 11:13:09 cloud1.localdomain polkitd[1171]: Registered Authentication Agent for unix-process:9908:450142261 (system bus name :1.19686 [/usr/bin/pkttyagent --notify-fd 5 --fallback], object p 8月 26 11:13:09 cloud1.localdomain systemd[1]: Starting The Apache HTTP Server... -- Subject: Unit httpd.service has begun start-up -- Defined-By: systemd -- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel -- -- Unit httpd.service has begun starting up. 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. -- 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 文件,發(fā)現(xiàn)Listen 80 兩次,httpd-vhosts.conf一次,httpd.conf一次
虛擬機里的加個#Listen 80 OK解決了
備注:apache\Apache\conf下,extra和original文件夾的含義
extra的意思是額外擴展
original的意思是源目錄文件
original文件夾是配置文件的源文件備份,而真正要配置的是conf目錄下的httpd.conf文件以及extra目錄的額外擴展配置。
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
相關(guān)文章
PHP函數(shù)rtrim()使用中的怪異現(xiàn)象分析
這篇文章主要介紹了PHP函數(shù)rtrim()使用中的怪異現(xiàn)象,結(jié)合具體實例形式分析了php函數(shù)rtrim在進行字符匹配過程中出現(xiàn)的問題與解決方法,有助于進一步了解rtrim函數(shù)的原理與使用技巧,需要的朋友可以參考下2017-02-02PHP英文字母大小寫轉(zhuǎn)換函數(shù)小結(jié)
這篇文章主要介紹了幾個PHP英文字母大小寫轉(zhuǎn)換函數(shù),分為首字母大小寫轉(zhuǎn)換和所有字母大小寫轉(zhuǎn)換,需要的朋友可以參考下2014-05-05php循環(huán)檢測目錄是否存在并創(chuàng)建(循環(huán)創(chuàng)建目錄)
php循環(huán)檢測目錄是否存在并創(chuàng)建,需要的朋友可以參考下。2011-01-01淺談PHP正則表達(dá)式中修飾符/i, /is, /s, /isU
我們在PHP正則表達(dá)式的學(xué)習(xí)中會碰到修飾符,那么關(guān)于PHP正則表達(dá)式修飾符的理解以及使用我們需要注意什么呢?那么我們來具體的看看它的概念以及相關(guān)內(nèi)容。2014-10-10