2. 选择合适的yum文件,下文示例适合Red Hat Enterprise Linux 7 / Oracle Linux 7 版本的CentOS
wget https://repo.mysql.com//mysql80-community-release-el7-4.noarch.rpm
3. yum安装
yum install mysql80-community-release-el7-4.noarch.rpm
4. 您可以通过以下命令检查 MySQL Yum 存储库是否已经成功添加
yum repolist enabled | grep "mysql.*-community.*"
5. 通过以下命令安装 MySQL
yum install mysql-community-server
6. 启动MySQL
systemctl start mysqld
7. 你可以使用以下命令检查 MySQL 服务器的状态
systemctl status mysqld
8. 由于MySQL安装的时候会自动生成密码,所以先找到密码
grep 'temporary password' /var/log/mysqld.log
9. 使用生成的临时密码登录,并为超级用户帐户设置自定义密码,从而尽快更改 root 密码
mysql -uroot -p
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass4!';