安装配置腾讯云服务器并解决[1130] Host t '*’ i

2018-08-17  本文已影响0人  程序_Yuan

在自己计算机用navicat连接腾讯云远程数据库出现问题:

[1130] Host t '*’ is not allowed to connect to this se...

这是MYSQL的权限问题

解决方法:

进入mysql:mysql -u帐号 -p密码

mysql> grant all privileges on *.* to 'root'@'%'identified by 'mypassword123456';

mysql> flush privileges;

mysql> exit

OK

上一篇 下一篇

猜你喜欢

热点阅读