张文保的博客
张文保 · Paul Zhang

Engineering the Future

MySQL

远程连接mysql的配置方法

默认情况下,mysql只允许本地登录,如果要开启远程连接,则需要修改/etc/mysql/my.conf文件。

一、修改/etc/mysql/my.conf
找到

bind-address = 127.0.0.1

 

这一行,改为

bind-address = 0.0.0.0

 

即可

二、为需要远程登录的用户赋予权限
1、新建用户远程连接mysql数据库

grant all on *.* to admin@'%' identified by '123456' with grant option;
flush privileges;

 

允许任何ip地址(%表示允许任何ip地址)的电脑用admin帐户和密码(123456)来访问这个mysql server。
注意admin账户不一定要存在。

2、支持root用户允许远程连接mysql数据库

grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
flush privileges;

 

三、查看系统用户

远程连接mysql的配置方法

相关文章
本文标题:《远程连接mysql的配置方法》
网址:https://zhangwenbao.com/configuration-method-of-remote-connection-mysql.html
作者:张文保
发布时间:2017-03-07
许可协议:CC BY-NC-SA 4.0
发表新评论
SSL安全认证