远程连接mysql

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了远程连接mysql相关的知识,希望对你有一定的参考价值。

在window下使用mysqlWorkbench连接Ubuntu服务器下的mysql

1.ubuntu下安装mysql

sudo apt-get install mysql-server

输入密码后即可完成安装

 

2.进入mysql创建远程连接的用户

mysql -u root -p

输入密码登录

使用grant创建用户

grant 权限1,权限2,…权限n on 数据库名称.表名称 to 用户名@用户地址 identified by ‘连接口令‘;

例如:

grant select,insert,update,delete,create,drop on mydb.mytable to [email protected] identified by ‘mypassword‘;
给来自192.168.1.88的用户hades分配可对数据库 mydb的mytable表进行select,insert,update,delete,create,drop等操作的权限,并设定口令为‘mypassword‘;

grant all privileges on *.* to [email protected] identified by ‘mypassword‘;

给来自192.168.1.88的用户hades分配可对所有数据库的所有表进行所有操作的权限限,并设定口令为‘mypassword‘;

grant all privileges on *.* to [email protected]‘%‘ identified by ‘mypassword‘;

给来自任何IP地址的用户hades分配可对所有数据库的所有表进行所有操作的权限限,并设定口令为‘mypassword‘;

 

3.修改mysql的配置文件

sudo vim /etc/mysql/my.cf

找到bind-address = 127.0.0.1

改成bind-address = 0.0.0.0

保存退出

 

4.重启mysql服务

sudo service mysql restart

 

5.在window下使用mysqlworkbench连接

技术分享

 

 6.显示如下即为连接成,如不成功,请查看服务器端口3306是否打开。

技术分享

 


以上是关于远程连接mysql的主要内容,如果未能解决你的问题,请参考以下文章

用MysQL怎么进行远程连接数据库

mysql绑定ipv6导致远程连接不上

无法连接远程MySQL数据库哪,如何解决

怎样连接远程mysql数据库?

如何设置mysql 允许远程连接

如何开启MySQL远程访问权限 允许远程连接