Centos7.3 mysql5.7 密码修改及远程登陆配置

Posted 心以不防

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7.3 mysql5.7 密码修改及远程登陆配置相关的知识,希望对你有一定的参考价值。

修改密码命令

set password for [email protected] = password(‘[email protected]‘);

连接命令

ln -s /usr/local/mysql/bin/mysql /usr/bin

允许远程连接mysql配置

update user set host=‘%‘ where user=‘root‘;

如果出现错误:ERROR 1175 (HY000): You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column

则输入 SET SQL_SAFE_UPDATES = 0; 然后再次update

最后别忘了

flush privileges;

 

以上是关于Centos7.3 mysql5.7 密码修改及远程登陆配置的主要内容,如果未能解决你的问题,请参考以下文章

Centos7.3下mysql5.7.18安装并修改初始密码的方法

MySQL5.7修改密码

mysql5.7如何修改密码以及密码如何忘记无密码登陆

Mysql5.7修改密码

MySQL5.7修改默认密码随机密码

mysql5.7修改密码