0

パペットを使用してApacheを構成しようとしました。Apache を起動しようとすると、適切なエラー メッセージが表示されずに失敗します。なぜ失敗するのかわかりません。以下のコマンドを実行しようとしましたが、起動に失敗しただけで、起動に失敗した特定の理由は表示されません。何が起こっているのかを把握する方法を教えてください。以下にログファイルを添付します。

systemctl status httpd.service
journalctl -xe


Aug 15 22:56:03 hostname 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.
Aug 15 22:56:03 hostname httpd[18999]: no listening sockets available, shutting down
Aug 15 22:56:03 hostname httpd[18999]: AH00015: Unable to open logs
Aug 15 22:56:03 hostname systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE
Aug 15 22:56:03 hostname kill[19001]: kill: cannot find process ""
Aug 15 22:56:03 hostname audispd[414]: node=hostname type=SERVICE_START msg=audit(1471316163.292:57410): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=
Aug 15 22:56:03 hostname systemd[1]: httpd.service: control process exited, code=exited status=1
Aug 15 22:56:03 hostname 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.
Aug 15 22:56:03 hostname systemd[1]: Unit httpd.service entered failed state.
Aug 15 22:56:03 hostname systemd[1]: httpd.service failed.
Aug 15 22:56:03 hostname polkitd[532]: Unregistered Authentication Agent for unix-process:18984:32063862 (system bus name :1.15792, object path /org/freedesktop/P
4

2 に答える 2

2

あなたの最良のヒントは

Aug 15 22:56:03 hostname httpd[18999]: no listening sockets available, shutting down

Tomcat がリッスンしようとしているソケットで別のプロセスがリッスンしているように見えます。これはデフォルトで 8080 です。または、conf をチェックして何が設定されているかを確認できます。

次のようなコマンドを使用できます

 lsof -i TCP |grep 8080 

topそのポートでリッスンしているもののプロセスIDを取得し、それを追跡するには

于 2016-08-16T03:14:18.070 に答える