在自己計算機(jī)用navicat連接騰訊云遠(yuǎn)程數(shù)據(jù)庫出現(xiàn)問題:
[1130] Host t '*’ is not allowed to connect to this se...
這是MYSQL的權(quán)限問題
解決方法:
進(jìn)入mysql:mysql -u帳號 -p密碼
mysql> grant all privileges on *.* to?'root'@'%'identified?by 'mypassword123456';
mysql> flush privileges;
mysql> exit
OK