mysql不能外网访问如何解决

mysql不能外网访问解决方法:

1、在/etc/mysql/my.cnf中的[mysqld]段注释掉bind-address = 127.0.0.1

2、给用户授权允许远程访问:

grant all privileges on *.* to root@"%" identified by "pwd" with grant option;

flush privileges;

推荐:MySQL教程

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » mysql不能外网访问如何解决