MySQL 远程连接问题
Posted 黑桃_K_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 远程连接问题相关的知识,希望对你有一定的参考价值。
connect failed: Host '***' is not allowed to connect to this MariaDB server
mysql连接一连接就出现上面那句话,
//1.进入MySQL
mysql -uroot -p
//2.使用mysql数据库
use mysql;
//3.查看user配置
select host,user,password from user;
//4.修改配置
update user set host = '%' where user = 'root';
//5.刷新
flush privileges;
3.
以上是关于MySQL 远程连接问题的主要内容,如果未能解决你的问题,请参考以下文章
连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段