0
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?

Amazon Linux2023にMySQL Clientをインストール

Posted at

サクッとわかりそうな記事が見当たらなかったので、備忘録として記載します。

mysql公式リポジトリからダウンロードするため、
インスタンスは基本的にインターネットにつながる環境を想定しています。

GPG Keyのインストール

こちらの下の方に書いてあるコマンドを実行し、GPG鍵をインポートします。
https://dev.mysql.com/doc/refman/8.4/en/checking-rpm-signature.html

sudo rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2023

こちらの鍵は定期的に更新されるようなので、公式サイトを参考にするのが良いかと思います。

mysqlリポジトリの登録

Amazon Linux2023はFedoraベースということですが、
EL9でも動作するようなので、こちらでインストールします。(詳細不明です…。)

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

MySQLクライアントのインストール

sudo dnf -y install mysql-community-client

インストールするかを確認されるので、yで進めてください。

インストールされると、コマンドが使えるようになります。

[ec2-user@172.31.10.205 ~]$ mysql --version
mysql  Ver 8.0.39 for Linux on aarch64 (MySQL Community Server - GPL)
[ec2-user@172.31.10.205 ~]$ 

ちょっと古いですが、最新をインストールする場合は以下を確認し、インストールしたい対象のバージョンのページを確認するのが良いかと思います。

0
0
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
0
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?