mysql 3306端口不能访问怎么办

来自:互联网
时间:2020-10-27
阅读:

MySQL 3306端口不能访问的解决办法:

修改mysql库user表中host字段值为localhost的更新为%。

命令:

mysql>  use mysql
mysql>  update user set host = '%' where host='localhost';

修改前

mysql 3306端口不能访问怎么办

修改后

mysql 3306端口不能访问怎么办

重启mysql服务即可访问。

返回顶部
顶部