- 論壇徽章:
- 2
|
centos7安裝kilo,在安裝keystone過程中,執(zhí)行最后一步,“systemctl start httpd.service”失敗下面是日志:
[root@controller httpd]# systemctl start httpd.service
Job for httpd.service failed. See 'systemctl status httpd.service' and 'journalctl -xn' for details.
[root@controller httpd]# tail -n 20 /var/log/messages
Sep 10 12:27:20 controller systemd: httpd.service: main process exited, code=exited, status=1/FAILURE
Sep 10 12:27:20 controller kill: kill: cannot find process ""
Sep 10 12:27:20 controller systemd: httpd.service: control process exited, code=exited status=1
Sep 10 12:27:20 controller systemd: Failed to start The Apache HTTP Server.
Sep 10 12:27:20 controller systemd: Unit httpd.service entered failed state.
Sep 10 12:27:32 controller systemd: Starting OpenStack Identity Service (code-named Keystone)...
Sep 10 12:27:35 controller systemd: Started OpenStack Identity Service (code-named Keystone).
Sep 10 12:28:00 controller systemd: Starting The Apache HTTP Server...
Sep 10 12:28:00 controller httpd: (13)Permission denied: AH00072: make_sock: could not bind to address [::]:5000
Sep 10 12:28:00 controller httpd: (13)Permission denied: AH00072: make_sock: could not bind to address 0.0.0.0:5000
Sep 10 12:28:00 controller httpd: no listening sockets available, shutting down
Sep 10 12:28:00 controller httpd: AH00015: Unable to open logs
Sep 10 12:28:00 controller systemd: httpd.service: main process exited, code=exited, status=1/FAILURE
Sep 10 12:28:01 controller kill: kill: cannot find process ""
Sep 10 12:28:01 controller systemd: httpd.service: control process exited, code=exited status=1
Sep 10 12:28:01 controller systemd: Failed to start The Apache HTTP Server.
Sep 10 12:28:01 controller systemd: Unit httpd.service entered failed state.
Sep 10 12:28:01 controller systemd: Created slice user-996.slice.
Sep 10 12:28:01 controller systemd: Starting Session 14 of user pcp.
Sep 10 12:28:01 controller systemd: Started Session 14 of user pcp.
我的分析,可能是沒有禁止keystone服務,因為官網(wǎng)指導書有下面的說明:大致的意思是mod_wsgi和keystone端口沖突了
In Kilo, the keystone project deprecates Eventlet in favor of a WSGI server. This
guide uses the Apache HTTP server with mod_wsgi to serve keystone requests
on ports 5000 and 35357. By default, the keystone service still listens on ports
5000 and 35357. Therefore, this guide disables the keystone service.”但是沒有相關操作
1.png (51.48 KB, 下載次數(shù): 49)
下載附件
2015-09-11 21:58 上傳
在ubuntu的安裝手冊中,有這個步驟也有相關的操作
2.png (20.99 KB, 下載次數(shù): 54)
下載附件
2015-09-11 21:58 上傳
我把keystone禁止了,還是抱同樣的錯誤
|
|