Rumah > Artikel > pangkalan data > mysql 3306端口不能访问怎么办
mysql 3306端口不能访问的解决办法:修改mysql库user表中host字段值为localhost的更新为【%】,代码为【mysql> use mysql;mysql> update user set host = '%' 】。
mysql 3306端口不能访问的解决办法:
修改mysql库user表中host字段值为localhost的更新为%。
命令:
mysql> use mysql mysql> update user set host = '%' where host='localhost';
修改前
修改后
重启mysql服务即可访问。
更多相关免费学习推荐:mysql教程(视频)
Atas ialah kandungan terperinci mysql 3306端口不能访问怎么办. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!