1.1 下载wget命令
yum -y install wget
1.2 在线下载mysql安装包
wget https://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm
1.3 安装mysql
rpm -ivh mysql57-community-release-el7-8.noarch.rpm
1.4 安装mysql服务
1.4.1 首先进入cd /etc/yum.repos.d/目录。
cd /etc/yum.repos.d/
1.4.2 安装mysql
yum -y install mysql-server
解决办法如下
:rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
再次执行 如下命令
yum -y install mysql-server
1.5 :启动mysql
systemctl start mysqld
1.5.1修改mysql临时密码
MySQL安装成功后会有一个临时密码,我们可以使用grep
命令查看临时密码先登录进去MySQL,然后修改MySQL密码。
1.5.2获取临时密码
grep 'temporary password' /var/log/mysqld.log
1.5.3使用临时密码登录
mysql -uroot -p 我的临时密码是:a22XRJ88=+a
1.5.4 把MySQL的密码校验强度改为低风险
set global validate_password_policy=LOW;
1.5.5 修改密码长度
set global validate_password_length=5;
1.5.6 修改密码
ALTER USER 'root'@'localhost' IDENTIFIED BY 'admin';
1.6 设置允许远程访问
1.6.1 先关闭防火墙
sudo systemctl disable firewalld
1.6.2 修改MySQL允许任何人连接
1)首先登录MySQL
mysql -uroot -padmin
2)切换到mysql数据
use mysql;
3)查看user表
select Host,User from user;
发现root
用户只允许localhost
主机登录登录
4)修改为允许任何地址访问
update user set Host='%' where User='root';
5)刷新权限
flush privileges;