美文网首页
MySQL5.7安装

MySQL5.7安装

作者: 不着方寸 | 来源:发表于2020-03-06 10:57 被阅读0次

mysql

yum localinstall https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
yum install mysql-community-server
service mysqld start

查看临时密码

grep 'A temporary password' /var/log/mysqld.log |tail -1
/usr/bin/mysql_secure_installation

降低密码强度要求

set global validate_password_policy=LOW; 
alter user 'root'@'localhost' identified by 'yourpassword';

允许其他host登录

use mysql;
update user set host = '%' where user = 'root';
FLUSH PRIVILEGES;

相关文章

网友评论

      本文标题:MySQL5.7安装

      本文链接:https://www.haomeiwen.com/subject/jqbvrhtx.html