1、检查系统中是否已安装 MySQL。

rpm -qa | grep mysql

在新版本的CentOS7中,默认的数据库已更新为了Mariadb,而非 MySQL,所以执行 yum install mysql 命令只是更新Mariadb数据库,并不会安装 MySQL


2、查看已安装的 Mariadb 数据库版本。

rpm -qa|grep -i mariadb

3、卸载已安装的 Mariadb 数据库

rpm -qa|grep mariadb|xargs rpm -e --nodeps

4、再次查看已安装的 Mariadb 数据库版本,确认是否卸载完成。

rpm -qa|grep -i mariadb

5、下载安装包文件(安装完成后记得删除)。

wget https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm

weget不能用

vim /etc/resolv.conf
nameserver 8.8.8.8 #googleDNS
nameserver 8.8.4.4 #googleDNS

6、安装mysql57-community-release-el7-9.noarch.rpm包

rpm -ivh mysql57-community-release-el7-9.noarch.rpm

安装完成之后,会在 /etc/yum.repos.d/ 目录下新增 mysql-community.repo 、mysql-community-source.repo 两个 yum 源文件。

执行 yum repolist all | grep mysql 命令查看可用的 mysql 安装文件。


7、安装mysql。

yum install mysql-server

安装报错,官方5.7版本默认没有GPG key, 需要在上述命令上 添加 --nogpgcheck 进行强制安装。
image.png

yum install mysql-server --nogpgcheck

8、检查mysql是否安装成功。

rpm -qa | grep mysql

9、启动 mysql 服务 。

systemctl start mysqld.service #启动 mysql
systemctl restart mysqld.service #重启 mysql
systemctl stop mysqld.service #停止 mysql
systemctl enable mysqld.service #设置 mysql 开机启动

10、查看 root 临时密码

grep 'temporary password' /var/log/mysqld.log

11、修改 root 密码

mysql -uroot -p # 输入上步查到的密码。
alter user 'root'@'localhost' identified BY '密码';
# 如果密码太简单,会提示。需要修改下面2个参数。
set global validate_password_policy=LOW;
set global validate_password_length=6;

12、设置远程主机登录

GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "密码";

13、刷新权限

FLUSH PRIVILEGES;

https://blog.csdn.net/m0_55730189/article/details/126716163