标签:img date none 成绩 get jks width 遇到 serve
先看成绩
水平有限,为了使用Navicat连接阿里云的MySQL耗费了八九个小时【数据库连上了,但是网站塌了,悲剧】。方法找了很多,主要是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
https://www.cnblogs.com/wangbaobao/p/7087032.html
https://blog.csdn.net/Night_X/article/details/82497812
用navicat连接数据库报错:1130-host ... is not allowed to connect to this MySql server如何处理
标签:img date none 成绩 get jks width 遇到 serve
原文地址:https://www.cnblogs.com/ooo888ooo/p/12468361.html