出现并解决Navicat 报错:1130-host ... is not allowed to connect to this MySql server,MySQL

时间:2022-11-17 16:48:15

例如,你想myuser使用mypassword从任何主机连接到mysql服务器的话。

GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypassword' WITH GRANT OPTION;

FLUSH   PRIVILEGES;