mysql远程连接时出现1130错误的原因是系统数据库mysql中user表中的host是localhost,步骤如何下:
1.在命令行中使用命令,启动mysql服务;
service mysqld start
2.mysql服务启动后,继续在命令行是命令,进入mysql数据库;
mysql -u root -p
3.进入mysql数据库后,使用数据库;
use mysql;
4.修改mysql中user表中的host值,并刷新数据库;
update user set host = '%' where user = 'root';
flush privileges;
5.最后,host值修改好后,重启mysql服务即可;
service mysqld restart