错误代码是1130:ERROR 1130: Host xxx.xxx.xxx.xxx is not allowed to connect to this MySQL server
错误代码原因:是无法给远程连接的用户权限问题
错误代码解决方法:是给用户授权权限 我用的用户是root 密码123456
进入mysql数据库执行以下代码:
GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘123456‘ WITH GRANT OPTION;
flush privileges;
测试:使用Navicat for MySQL连接mysql数据库,将会连接成功。
时间: 2024-12-10 09:39:33