在自己計算機用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