Mysql

关注公众号 jb51net

关闭
首页 > 数据库 > Mysql > MySQL Host is not allowed to connect

连接MySQL出现Host is not allowed to connect to this MySQL server 解决方法详解

作者:id_name755

这篇文章主要给大家介绍了连接MySQL出现Host is not allowed to connect to this MySQL server 解决方法,文中有详细的解决步骤,需要的朋友可以参考下

一、报错的原因?

英语翻译 --- ‘不允许主机连接到此MySQL服务器’ (意思是本地账号连接可以登录,但是远程登陆不行)

二、解决步骤

1.打开cmd 进入到php的bin文件

2.以下命令按顺序执行

1):mysql -u root -p 这一步是连接数据库,输入密码(一般是原始密码)

2):use mysql;

3): update user set host = '%' where user = 'root';

4) : FLUSH PRIVILEGES;

到此这篇关于连接MySQL出现Host is not allowed to connect to this MySQL server 解决方法详解的文章就介绍到这了,更多相关MySQL Host is not allowed to connect内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文