1

これの解決策は何ですか?? Scratch から新しい VPC をセットアップしようとしています。ムンバイ リージョンに CIDR 10.0.0.0/16 の VPC を作成しました。インターネット ゲートウェイを作成し、これらの VPC に接続します。2 つのサブネットを作成 1) 10.0.1.0/24、パブリック IP あり、アベイラビリティ ゾーン US-East-1a 内 2) 10.0.2.0/24 パブリック IP なし、アベイラビリティ ゾーン US-East-1b 内 両方のサブネットは異なるゾーンにあります

パブリック サブネット (10.0.1.0/24) を使用して 2 つのルート テーブル 1.Route table1 を作成し、インターネット ゲートウェイを追加します。2.インターネット ゲートウェイなしのプライベート サブネット (10.0.2.0/24) を使用したルート テーブル 2

HTTP、HTTPS、TELNET、SSH のアウトバウンド トラフィックのみのインバウンド トラフィックを許可するように、デフォルトのネットワーク ACL を変更しました -ALLOW ALL

そして、PUBLIC SUBNET(10.0.1.0/24) で EC2 インスタンスを起動しました。これらの EC2 インスタンスにはパブリック IP とプライベート IP があります。EC2 セキュリティグループ INBOUND- HTTP,HTTPS,SSH for 0.0.0.0/0 Outbound -ALL for 0.0.0.0/0

EC2 コンソールにログインし、sudo -i を実行して sudo ユーザーになることができます

インターネットに正常に接続できることを確認しました

 ping 8.8.8.8
 PING 8.8.8.8 (8.8.8.8) 56(84) bytes of data.
 64 bytes from 8.8.8.8: icmp_seq=1 ttl=56 time=1.27 ms
 64 bytes from 8.8.8.8: icmp_seq=2 ttl=56 time=1.39 ms
 64 bytes from 8.8.8.8: icmp_seq=3 ttl=56 time=1.43 ms
 ^C
 --- 8.8.8.8 ping statistics ---
 3 packets transmitted, 3 received, 0% packet loss, time 2003ms
 rtt min/avg/max/mdev = 1.270/1.366/1.438/0.082 ms

次に、yum update -y を実行しようとするか、yum install httpd を実行しようとすると

以下のエラーが発生します

"# yum update -y

 Loaded plugins: priorities, update-motd, upgrade-helper
 Could not retrieve mirrorlist http://repo.ap-south-1.amazonaws.com/latest/main/mirror.list error was
 12: Timeout on http://repo.ap-south-1.amazonaws.com/latest/main/mirror.list: (28, 
 'Resolving timed out after 5515 milliseconds')


 One of the configured repositories failed (Unknown),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

 1. Contact the upstream for the repository and get them to fix the problem.

 2. Reconfigure the baseurl/etc. for the repository, to point to a working
    upstream. This is most often useful if you are using a newer
    distribution release than is supported by the repository (and the
    packages for the previous distribution release still work).

 3. Disable the repository, so yum won't use it by default. Yum will then
    just ignore the repository until you permanently enable it again or use
    --enablerepo for temporary usage:

        yum-config-manager --disable <repoid>

 4. Configure the failing repository to be skipped, if it is unavailable.
    Note that yum will try to contact the repo. when it runs most commands,
    so will have to try and fail each time (and thus. yum will be be much
    slower). If it is a very temporary problem though, this is often a nice
    compromise:

        yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true

パブリック IP でインスタンスを起動し、インターネット ゲートウェイを使用して、ec2 インスタンス レベルおよび VPC レベルの HTTP、HTTPS、SSH ポートを開いたとき - HTTP、HTTPS、SSH、TELENET はインバウンド用に開かれていますが、それでも上記のエラーが発生します。?

4

2 に答える 2