皆さん、こんにちは!
今回はちょっとしたメモです。
CentOS7にmysql clientをインストールしたので、その過程を書いておきます。
環境
以下、実行環境です。
CentOS Linux release 7.9.2009 (Core)
mysql clientのインストール方法
リポジトリを追加する。
# rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm
これで、yumのリポジトリリストにmysql communityが追加される。
# yum repolist enabled | grep mysql
mysql-connectors-community/x86_64 MySQL Connectors Community 203
mysql-tools-community/x86_64 MySQL Tools Community 129
mysql80-community/x86_64 MySQL 8.0 Community Server 265
mysql clientを検索してみると、mysql-community-client.x86_64
が見つかるはず。
# yum search mysql-community-client
...
mysql-community-client.i686 : MySQL database client applications and tools
mysql-community-client.x86_64 : MySQL database client applications and tools
mysql-community-client-plugins.i686 : Shared plugins for MySQL client applications
mysql-community-client-plugins.x86_64 : Shared plugins for MySQL client applications
Name and summary matches only, use "search all" for everything.
早速、mysql clientをインストールする。
# yum install -y mysql-community-client
...
Installed:
mysql-community-client.x86_64 0:8.0.25-1.el7 mysql-community-libs.x86_64 0:8.0.25-1.el7 mysql-community-libs-compat.x86_64 0:8.0.25-1.el7
Dependency Installed:
mysql-community-client-plugins.x86_64 0:8.0.25-1.el7 mysql-community-common.x86_64 0:8.0.25-1.el7
Replaced:
mariadb-libs.x86_64 1:5.5.68-1.el7
Complete!
ではでは!