在自己计算机用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