1.安装wget
yum install -y wget
2.运行如下命令:wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm
3.安装源:yum localinstall -y mysql80-community-release-el7-3.noarch.rpm
4.安装mysql:yum install -y mysql-community-server
5.以上信息安装失败运行如下命令:yum install -y mysql-community-server --nogpgcheck
6.启动服务
systemctl start mysqld
7.查看mysql运行状态
8.查看mysql 生成的随机密码 :cat /var/log/mysqld.log
9.用密码登录mysql
mysql -uroot -p 回车输入随机生成的密码
10.第一次登陆需要修改生成的密码:
alter user ‘root’@‘localhost’ identified by ‘你的密码’;
11.退出重新登录;
12.查看当前数据库的用户
select host,user from user;
13.允许root用户远程登录
update user set host=’%’ where user=‘root’;
14.使root用户的权限生效
flush privileges;
15.使用连接工具测试连接;
**16.防火墙放行3306端口
firewall-cmd --zone=public --permanent --add-port=3306/tcp**
17重载防火墙服务
firewall-cmd --reload
18 设置数据库开机自启
systemctl enable mysqld