一、下载对应系统的MySQL版本,并上传到要安装的服务器上
MySQL :: Download MySQL Yum Repository
二、开始安装
yum install mysql80-community-release-el7-3.noarch.rpm
yum repolist enabled | grep "mysql.*-community.*"
yum install mysql-community-server
systemctl start mysqld
启动成功后需要先生成临时密码登录并修改设置新密码
# 生成 root@localhost 的临时密码 grep 'temporary password' /var/log/mysqld.log
使用临时密码登录后修改密码
退出 使用新密码就可以登录了