localhost能访问,IP不能访问
- 登录MySql
mysql -u root -p
- 修改访问权限
grant all privileges on *.* to root@'%' identified by 'your root password';
添加成功之后返回信息:Query OK, 0 rows affected (0.03 sec)
'all privileges ':所有权限 也可以写成 select ,update等。
*.* 所有库的所有表 如 databasename.*。
IP 数据库所在的IP。
identified by ‘密码’ 表示通过密码连接
- 刷新权限
flush privileges;
- 绑定IP
修改 50-server.cnf->bind_address = 0.0.0.0
- 重启服务
service mysql stop
service mysql start
网友评论