実現したいこと
Cloud9上でEC2のサーバーを指定し、Nginxを起動しました。
Cloud9上での動作を見る限り問題はなさそうなのですが、当該パブリックIPアドレスにアクセスしてもアクセスができません。
Cloud9に入力したコード
[ec2-user@ip-172-31-45-114 ~]$ sudo amazon-linux-extras install -y nginx1 . . . Complete! [ec2-user@ip-172-31-45-114 ~]$ sudo systemctl enable nginx . . . Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service. [ec2-user@ip-172-31-45-114 ~]$ sudo systemctl start nginx
補足情報
入力に何か必要なコードが抜けているのでしょうか。
あるいはアクセス方法がわるいのでしょうか。(Chromeの検索欄にIPアドレスをベタ貼り)
※Safariも同様に試したのですが動作しませんでした。
その他何か確認事項等ございましたらご教示いただけますと幸いです。
よろしくお願いいたします。
追記
以下のコードの入力結果です。
sudo systemctl status nginx
出力結果
● nginx.service - The nginx HTTP and reverse proxy server
Loaded: loaded (/usr/lib/systemd/system/nginx.service; enabled; vendor preset: disabled)
Active: active (running) since Fri 2021-06-25 06:35:46 UTC; 4h 9min ago
Process: 32370 ExecStart=/usr/sbin/nginx (code=exited, status=0/SUCCESS)
Process: 32366 ExecStartPre=/usr/sbin/nginx -t (code=exited, status=0/SUCCESS)
Process: 32365 ExecStartPre=/usr/bin/rm -f /run/nginx.pid (code=exited, status=0/SUCCESS)
Main PID: 32372 (nginx)
CGroup: /system.slice/nginx.service
├─32372 nginx: master process /usr/sbin/nginx
└─32373 nginx: worker process
Jun 25 06:35:46 ip-172-31-45-114.ap-northeast-1.compute.internal systemd[1]: Starting The nginx HTTP and reverse ....
Jun 25 06:35:46 ip-172-31-45-114.ap-northeast-1.compute.internal nginx[32366]: nginx: the configuration file /etc...k
Jun 25 06:35:46 ip-172-31-45-114.ap-northeast-1.compute.internal nginx[32366]: nginx: configuration file /etc/ngi...l
Jun 25 06:35:46 ip-172-31-45-114.ap-northeast-1.compute.internal systemd[1]: Started The nginx HTTP and reverse p....
Hint: Some lines were ellipsized, use -l to show in full.
※Activeとはでています。
ログについてはわかりかねますが、記載がないように思えます。
IPの指定をパブリックで行なっておりますが、こちらに表示されているのはプライベートIPになっているようです。
こちらが原因に関係あるわけではなさそうでしょうか。。。
回答1件
あなたの回答
tips
プレビュー