一、下载rpm
二、安装
1、用rz上传到centos上,目录为/home/upload
2、解压
tar -xvf mysql-5.7.25-1.el7.x86_64.rpm-bundle.tar
3、安装
rpm -Uvh mysql-community-{server,client,common,libs}-*
安装结果如下:
三、启动服务
1、[root@ckl1 mysql]# service mysqld start
2、查看3306端口是否启动:
3、获取临时密码
grep 'temporary password' /var/log/mysqld.log
4、mysql登录后,修改密码:
alter user 'root'@'localhost' identified by '123456';
如果遇到提示说“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements”,
请百度该错误即可。
所有评论(0)