1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AWSにてyumのインストールができない時

Posted at

EC2サーバーにyumをインストールしようとした際に、以下エラーが発生してインストールできなかったのでその備忘録を残しておきます。

[ec2-user@ip-10-0-0-110 ~]$ sudo yum install httpd -y
[sudo] ~ のパスワード:
Loaded plugins: extras_suggestions, langpacks, priorities, update-motd
 〜省略~
Cannot find a valid baseurl for repo: amzn2-core/2/x86_64

##結論
EC2のセキュリティグループのアウトバウンド設定が正しく設定されていなかった。

##対処策
EC2のセキュリティグループのアウトバウンド設定にhttpとhttpsを追加する。

以下手順となります。

まず、AWSのEC2インスタンスの画面に移行します。
そしてネットワーク&セキュリティ→セキュリティグループを選択します。

スクリーンショット 2021-06-02 23.03.44.png

次にアウトバウンドルールを編集します。
スクリーンショット 2021-06-02 23.07.46.png

ここでHTTPとHTTPSを追加して、外部接続を許可します。
スクリーンショット 2021-06-02 23.10.21.png

これで再度yumのインストールの実行を行ってみてください。

もし、またインストールできないようであればAmazon Linuxのyumリポジトリにアクセスできていない可能性がありますので、その場合は以下記事が参考になりました。
https://go-journey.club/archives/14364

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?