c⌒っ゚д゚)っφ メモメモ...
上記ダウンロードのURLからレポジトリ設定用のRPMをインストールする。
# yum install http://dev.mysql.com/get/mysql57-community-release-el6-7.noarch.rpm
2016/02/25時点ではMySQLバージョン5.7系がデフォルトで有効になっていた。もしも5.6系など異なるバージョンを導入したい場合はレポジトリの設定ファイルを書き換える。
# cd /etc/yum.repos.d
# vi mysql-community.repo
下記では 5.7 を無効(enabled=0)にし、5.6 を有効(enabled=1)にしてみた。
name=MySQL Tools Community
baseurl=http://repo.mysql.com/yum/mysql-tools-community/el/6/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
# Enable to use MySQL 5.5
[mysql55-community]
name=MySQL 5.5 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.5-community/el/6/$basearch/
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
# Enable to use MySQL 5.6
[mysql56-community]
name=MySQL 5.6 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.6-community/el/6/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
[mysql57-community]
name=MySQL 5.7 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/6/$basearch/
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
# yum repolist all
...
mysql55-community MySQL 5.5 Community Server disabled
mysql55-community-source MySQL 5.5 Community Server - Source disabled
mysql56-community MySQL 5.6 Community Server enabled: 231
mysql56-community-source MySQL 5.6 Community Server - Source disabled
mysql57-community MySQL 5.7 Community Server disabled
mysql57-community-source MySQL 5.7 Community Server - Source disabled
# yum info mysql-community-server | egrep -i version
Version : 5.6.29
# yum install mysql-community-server mysql-community-client