Fedora 35にMySQL 8.0をインストールする

環境情報
OSバージョンの確認
# cat /etc/redhat-release
Fedora release 35 (Thirty Five)

インストールの方法

1. MySQL 8.0 communityリポジトリを追加します

# sudo dnf -y install https://dev.mysql.com/get/mysql80-community-release-fc35-1.noarch.rpm

リポジトリファイルを確認します

# ls -l /etc/yum.repos.d/mysql-community.repo
-rw-r--r-- 1 root root 820 10月 22 21:23 /etc/yum.repos.d/mysql-community.repo

内容を確認します

# cat /etc/yum.repos.d/mysql-community.repo
[mysql80-community]
name=MySQL 8.0 Community Server
baseurl=http://repo.mysql.com/yum/mysql-8.0-community/fc/$releasever/$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

[mysql-connectors-community]
name=MySQL Connectors Community
baseurl=http://repo.mysql.com/yum/mysql-connectors-community/fc/$releasever/$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

[mysql-tools-community]
name=MySQL Tools Community
baseurl=http://repo.mysql.com/yum/mysql-tools-community/fc/$releasever/$basearch
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

[mysql-tools-preview]
name=MySQL Tools Preview
baseurl=http://repo.mysql.com/yum/mysql-tools-preview/fc/$releasever/$basearch
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

2.MySQL Server 8.0をインストールします

# sudo dnf install mysql-community-server
略
インストール済み:
  mecab-0.996-3.fc35.2.x86_64                      mecab-ipadic-2.7.0.20070801-23.fc35.x86_64               mecab-ipadic-EUCJP-2.7.0.20070801-23.fc35.x86_64
  mysql-community-client-8.0.27-10.fc35.x86_64     mysql-community-client-plugins-8.0.27-10.fc35.x86_64     mysql-community-common-8.0.27-10.fc35.x86_64
  mysql-community-libs-8.0.27-10.fc35.x86_64       mysql-community-server-8.0.27-10.fc35.x86_64

3.MySQLバージョンを確認します

# mysql --version
mysql  Ver 8.0.27 for Linux on x86_64 (MySQL Community Server - GPL)

パッケージを確認します

# rpm -qi mysql-community-server
Name        : mysql-community-server
Version     : 8.0.27
Release     : 10.fc35
Architecture: x86_64
Install Date: 2021年12月15日 14時23分41秒
略

 

Fedora 35

Posted by arkgame