3
3

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 1 year has passed since last update.

【Amazon Linux 2023】メモ EC2からRDS(MySQL)に接続方法

Posted at

PC環境

  • MacBook Pro (M1 Max, 2021)
  • mac OS Monterey (ver 12.5)
  • SSD 2TB
  • RAM 32GB

VPC EC2 RDS 設定手順

作成後 EC2で使うコマンド

注意

Amazon Linux 2023 で

sudo yum install mysql

と打つと、

No match for argument: mysql
Error: Unable to find a match: mysql

が吐かれる。

対処法

sudo dnf -y localinstall  https://dev.mysql.com/get/mysql80-community-release-el9-1.noarch.rpm
sudo dnf -y install mysql mysql-community-client

の順にコマンドを打つ。
最後に

mysql -h {RDBのエンドポイント} -P 3306 -u {RDBユーザー名} -p

で繋がる。
スクリーンショット_2023-04-20_16_55_30.png

foo~~~~!!!!!!!!!

3
3
0

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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?