質問編集履歴
5
微修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -53,8 +53,6 @@
|
|
53
53
|
sudo systemctl start apache2
|
54
54
|
|
55
55
|
sudo journalctl -xe > jcs
|
56
|
-
|
57
|
-
cat jcs | grep -E 'apache|httpd'
|
58
56
|
|
59
57
|
```
|
60
58
|
|
4
ログ全文
test
CHANGED
File without changes
|
test
CHANGED
@@ -58,37 +58,9 @@
|
|
58
58
|
|
59
59
|
```
|
60
60
|
|
61
|
-
|
61
|
+
字数制限に引っかかるのでこちらに全文を載せます([ログ全文](http://cyber.kill.jp/tmp/apache_start_log))
|
62
62
|
|
63
|
-
```
|
64
63
|
|
65
|
-
11月 24 15:45:54 InterfaceLinuxSystem sudo[28310]: user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/bin/systemctl start apache2
|
66
|
-
|
67
|
-
-- Subject: Unit apache2.service has begun start-up
|
68
|
-
|
69
|
-
-- Unit apache2.service has begun starting up.
|
70
|
-
|
71
|
-
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
|
72
|
-
|
73
|
-
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: no listening sockets available, shutting down
|
74
|
-
|
75
|
-
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: AH00015: Unable to open logs
|
76
|
-
|
77
|
-
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: Action 'start' failed.
|
78
|
-
|
79
|
-
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: The Apache error log may have more information.
|
80
|
-
|
81
|
-
11月 24 15:45:54 InterfaceLinuxSystem systemd[1]: apache2.service: Control process exited, code=exited status=1
|
82
|
-
|
83
|
-
-- Subject: Unit apache2.service has failed
|
84
|
-
|
85
|
-
-- Unit apache2.service has failed.
|
86
|
-
|
87
|
-
11月 24 15:45:54 InterfaceLinuxSystem systemd[1]: apache2.service: Unit entered failed state.
|
88
|
-
|
89
|
-
11月 24 15:45:54 InterfaceLinuxSystem systemd[1]: apache2.service: Failed with result 'exit-code'.
|
90
|
-
|
91
|
-
```
|
92
64
|
|
93
65
|
make_sock: could not bind to address 0.0.0.0:80 とあるので
|
94
66
|
|
3
ポート確認について
test
CHANGED
File without changes
|
test
CHANGED
@@ -90,6 +90,20 @@
|
|
90
90
|
|
91
91
|
```
|
92
92
|
|
93
|
+
make_sock: could not bind to address 0.0.0.0:80 とあるので
|
94
|
+
|
95
|
+
80番ポートを使っている他のアプリを探しましたがみつかりません
|
96
|
+
|
97
|
+
```
|
98
|
+
|
99
|
+
lsof -i:80
|
100
|
+
|
101
|
+
```
|
102
|
+
|
103
|
+
また設定ファイルの /etc/apache2/apache2.conf を確認して Listen 80 が複数記述されていないことも確認しました。
|
104
|
+
|
105
|
+
([参考](https://donbulinux.hatenablog.jp/entry/2016/10/11/183733))
|
106
|
+
|
93
107
|
|
94
108
|
|
95
109
|
下記コマンドでプロセスも確認しましたが、自分自身(sudo ps aux ~)以外何も表示されません。
|
2
journalctl について追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -46,6 +46,52 @@
|
|
46
46
|
|
47
47
|
```
|
48
48
|
|
49
|
+
journalctl -xe についてはapacheスタートのコマンドを実行したのちテキストファイルに出力しました。
|
50
|
+
|
51
|
+
```
|
52
|
+
|
53
|
+
sudo systemctl start apache2
|
54
|
+
|
55
|
+
sudo journalctl -xe > jcs
|
56
|
+
|
57
|
+
cat jcs | grep -E 'apache|httpd'
|
58
|
+
|
59
|
+
```
|
60
|
+
|
61
|
+
結果は大量なのですべては記載しませんが、apache でグレップしたものを載せます。
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
11月 24 15:45:54 InterfaceLinuxSystem sudo[28310]: user : TTY=pts/0 ; PWD=/home/user ; USER=root ; COMMAND=/bin/systemctl start apache2
|
66
|
+
|
67
|
+
-- Subject: Unit apache2.service has begun start-up
|
68
|
+
|
69
|
+
-- Unit apache2.service has begun starting up.
|
70
|
+
|
71
|
+
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
|
72
|
+
|
73
|
+
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: no listening sockets available, shutting down
|
74
|
+
|
75
|
+
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: AH00015: Unable to open logs
|
76
|
+
|
77
|
+
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: Action 'start' failed.
|
78
|
+
|
79
|
+
11月 24 15:45:54 InterfaceLinuxSystem apachectl[28313]: The Apache error log may have more information.
|
80
|
+
|
81
|
+
11月 24 15:45:54 InterfaceLinuxSystem systemd[1]: apache2.service: Control process exited, code=exited status=1
|
82
|
+
|
83
|
+
-- Subject: Unit apache2.service has failed
|
84
|
+
|
85
|
+
-- Unit apache2.service has failed.
|
86
|
+
|
87
|
+
11月 24 15:45:54 InterfaceLinuxSystem systemd[1]: apache2.service: Unit entered failed state.
|
88
|
+
|
89
|
+
11月 24 15:45:54 InterfaceLinuxSystem systemd[1]: apache2.service: Failed with result 'exit-code'.
|
90
|
+
|
91
|
+
```
|
92
|
+
|
93
|
+
|
94
|
+
|
49
95
|
下記コマンドでプロセスも確認しましたが、自分自身(sudo ps aux ~)以外何も表示されません。
|
50
96
|
|
51
97
|
```
|
1
微修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -24,7 +24,7 @@
|
|
24
24
|
|
25
25
|
```
|
26
26
|
|
27
|
-
|
27
|
+
ステータス確認をすると
|
28
28
|
|
29
29
|
```
|
30
30
|
|
@@ -54,7 +54,7 @@
|
|
54
54
|
|
55
55
|
```
|
56
56
|
|
57
|
-
文法チェックを行う下記コマンドでは警告が出ました
|
57
|
+
設定ファイルの文法チェックを行う、下記コマンドでは警告が出ました
|
58
58
|
|
59
59
|
```
|
60
60
|
|