Cannot access my ec2 instance from Public DNS or Public IP

0

Hi, I cannot access my ec2 instance using Public DNS or Public IP. I have check the security group, subnet, dns, everything is fine but still I cannot reach the Public IP or DNS. Please Help. I use docker inside my ec2 instance

Orbital
質問済み 3ヶ月前343ビュー
2回答
1

If you want to host a website via EC2 and access website content via IP address, you may need to use Apache or NGINX (even you already enabled HTTP traffic at SG level)

You can learn how to setup NGINX at this link: https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-20-04

profile picture
回答済み 3ヶ月前
  • Yes, use nginx as other container, so is it different?

0

Hello.

Are you accessing public IP and public DNS using HTTP?
If you are accessing via HTTP, please check if the web server (Apache, etc.) is running on the EC2 OS.
Also, is the route to the internet gateway set in the route table where EC2 is running?
Even if a public IP is set on EC2 and traffic is permitted in the security group, public communication will not be possible if there is no route to the Internet gateway.

profile picture
エキスパート
回答済み 3ヶ月前
profile picture
エキスパート
レビュー済み 3ヶ月前
  • If you are using a Docker container, have you set the port number so that it can be accessed from the outside as shown below?

    docker run --name nginx01 -d -p 80:80 nginx
    

    Can you check the status of the Docker container with the following command? If there are no problems, you should be able to see output like the one below when you run the command. Make sure the "STATUS" column is UP.

    docker ps
    
    CONTAINER ID   IMAGE     COMMAND                  CREATED              STATUS              PORTS                  NAMES
    73fa6c221e80   nginx     "/docker-entrypoint.…"   About a minute ago   Up About a minute   0.0.0.0:80->80/tcp   nginx01
    

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ