Mysql远程连接时出现1130错误的原因是系统数据库mysql中user表中的host是localhost,步骤如何下:在命令行中使用命令,启动mysql服务;service mysqld startmysql服务启动后,继续在命令行是命
Mysql远程连接时出现1130错误的原因是系统数据库mysql中user表中的host是localhost,步骤如何下:
在命令行中使用命令,启动mysql服务;
service mysqld start
mysql服务启动后,继续在命令行是命令,进入mysql数据库;
mysql -u root -p
进入mysql数据库后,使用数据库;
use mysql;
修改mysql中user表中的host值,并刷新数据库;
update user set host = '%' where user = 'root';
flush privileges;
最后,host值修改好后,重启mysql服务即可;
service mysqld restart
--结束END--
本文标题: mysql1130错误如何解决
本文链接: https://lsjlt.com/news/113981.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0