質問編集履歴
1
1) sudo systemctl status nginxの入力による結果の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -57,3 +57,61 @@
|
|
57
57
|
その他何か確認事項等ございましたらご教示いただけますと幸いです。
|
58
58
|
|
59
59
|
よろしくお願いいたします。
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
### 追記
|
64
|
+
|
65
|
+
以下のコードの入力結果です。
|
66
|
+
|
67
|
+
```
|
68
|
+
|
69
|
+
sudo systemctl status nginx
|
70
|
+
|
71
|
+
```
|
72
|
+
|
73
|
+
出力結果
|
74
|
+
|
75
|
+
● nginx.service - The nginx HTTP and reverse proxy server
|
76
|
+
|
77
|
+
Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
|
78
|
+
|
79
|
+
Active: active (running) since Fri 2021-06-25 06:35:46 UTC; 4h 9min ago
|
80
|
+
|
81
|
+
Process: 32370 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS)
|
82
|
+
|
83
|
+
Process: 32366 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS)
|
84
|
+
|
85
|
+
Process: 32365 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)
|
86
|
+
|
87
|
+
Main PID: 32372 (nginx)
|
88
|
+
|
89
|
+
CGroup: /system.slice/nginx.service
|
90
|
+
|
91
|
+
├─32372 nginx: master process /usr/sbin/nginx
|
92
|
+
|
93
|
+
└─32373 nginx: worker process
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
Jun 25 06:35:46 ip-172-31-45-114.ap-northeast-1.compute.internal systemd[1]: Starting The nginx HTTP and reverse ....
|
98
|
+
|
99
|
+
Jun 25 06:35:46 ip-172-31-45-114.ap-northeast-1.compute.internal nginx[32366]: nginx: the configuration file /etc...k
|
100
|
+
|
101
|
+
Jun 25 06:35:46 ip-172-31-45-114.ap-northeast-1.compute.internal nginx[32366]: nginx: configuration file /etc/ngi...l
|
102
|
+
|
103
|
+
Jun 25 06:35:46 ip-172-31-45-114.ap-northeast-1.compute.internal systemd[1]: Started The nginx HTTP and reverse p....
|
104
|
+
|
105
|
+
Hint: Some lines were ellipsized, use -l to show in full.
|
106
|
+
|
107
|
+
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
※Activeとはでています。
|
112
|
+
|
113
|
+
ログについてはわかりかねますが、記載がないように思えます。
|
114
|
+
|
115
|
+
IPの指定をパブリックで行なっておりますが、こちらに表示されているのはプライベートIPになっているようです。
|
116
|
+
|
117
|
+
こちらが原因に関係あるわけではなさそうでしょうか。。。
|