在Linux下安装完数据库后,局域网内无法访问。
设置方法:
1.停止mysql,进入/etc/mysql/,编辑my.cnf,找到bind-address的配置,改为0.0.0.0,然后启动mysql
2.登录mysql,进入mysql数据库,执行update user set host='%' where host='127.0.0.1' and user='root',执行完成后再使用命令flush privileges;刷新一次用户权限即可。
以上配置具体都可根据自己需要配置的值直接替换,如root用户,或者host值
标签:0.0,Linux,host,user,mysql,权限,root,MySql From: https://blog.51cto.com/u_16237557/7260854