1.背景
2.安装
2.1.下载安装包
wget https://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm
2.2.安装mysql
rpm -ivh mysql57-community-release-el7-8.noarch.rpm
3.安装mysql服务
3.1.进入目录
首先进入cd /etc/yum.repos.d/目录
cd /etc/yum.repos.d/
3.2.安装MySQL服务
yum -y install mysql-server
如果报错如下:
解决办法,执行命令:
rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
然后重新执行安装mysql服务的命令:
yum -y install mysql-server
表示安装成功
3.3.启动,密码重置,登录mysql
启动:systemctl start mysqld
查看临时密码:grep 'temporary password' /var/log/mysqld.log
使用临时密码登录:mysql -uroot -p
密码修改:
把MySQL的密码校验强度改为低风险
set global validate_password_policy=LOW;
修改MySQL的密码长度
set global validate_password_length=5;
修改MySQL密码
ALTER USER 'root'@'localhost' IDENTIFIED BY 'admin';
3.4.允许远程连接
关闭Cenots的防火墙,或开启3306端口
sudo systemctl disable firewalld切换到mysql数据
use mysql;查看user表
select Host,User from user;
发现root用户只允许localhost主机登录登录修改为允许任何地址访问
update user set Host='%' where User='root';刷新权限
flush privileges;
3.5客户端连接
完美!