用navicat连接数据库报错:1130-host ... is not allowed to connect to this MySql server如何处理
Posted 牧牛人Alec
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用navicat连接数据库报错:1130-host ... is not allowed to connect to this MySql server如何处理相关的知识,希望对你有一定的参考价值。
先看成绩
水平有限,为了使用Navicat连接阿里云的mysql耗费了八九个小时【数据库连上了,但是网站塌了,后来查明是Tomcat和8009端口问题:重新开始Tomcat,并且在安全组中配置一下8009端口就好了】。方法找了很多,主要是mysql的版本问题上
网上很多方法是对的,但是处理不同版本数据库上还是不能照本宣科。
----------------------------------------------
这个问题是因为在数据库服务器中的mysql数据库中的user的表中没有权限(也可以说没有用户),下面将记录我遇到问题的过程及解决的方法。
在搭建完LNMP环境后用Navicate连接出错
遇到这个问题首先到mysql所在的服务器上用连接进行处理
1、连接服务器: mysql -u root -p
2、看当前所有数据库:show databases;
3、进入mysql数据库:use mysql;
4、查看mysql数据库中所有的表:show tables;
5、查看user表中的数据:select Host, User,authentication_string from user;
6、修改user表中的Host:update user set Host=\'%\' where User=\'root\';
7、最后刷新一下:flush privileges;
#一定要记得在写sql的时候要在语句完成后加上" ;
-------------------------------------------
可参考,不能照本宣科【根据错误提示在cnbogs找答案吧】
https://www.cnblogs.com/ljysy/p/10324854.html
https://blog.csdn.net/qq_43116788/article/details/84146918
https://blog.csdn.net/memory6364/article/details/82426052
https://blog.csdn.net/li_Dijkstra/article/details/79354385
https://blog.csdn.net/weixin_38287709/article/details/80404648
以上是关于用navicat连接数据库报错:1130-host ... is not allowed to connect to this MySql server如何处理的主要内容,如果未能解决你的问题,请参考以下文章
1130 - Host'xxx.xxx.xxx.xxx' is not allowed to connect to this MySQL server解决Navicat连接MySQL报
远程连接mysql报错:1130 - Host XXX is not allowed to connect to this MySQL server
解决MySql报错:1130 - Host 'xxx' is not allowed to connect to this MySQL server的方法
1130 - Host XXX is not allowed to connect to this MySQL server。