如何允许ubuntu中的mysql远程访问

一、修改ubuntu mysql的配置文件my.cnf

vim /etc/mysql/my.cnf (没有装vim可以sudo apt-get vim 安装或者用winscp工具下载修改)

修改内容:

1.直接注释掉#bind-address = 127.0.0.1

2.直接改为:bind-address = 0.0.0.0

3.或者指定远程要访问的IP:bind-address = 192.168.220.130


二、重启Mysql服务并登入Mysql

2.1 sudo /etc/init.d/mysql restart

2.2 mysql -uroot -p (root有密码)


三、授权用户能进行远程访问

3.1 grant all privileges on *.* to root@“%” identified by "password" with grant option;

3.2 flush privileges;

说明:*.* 表示数据库名.表名 第一个*代表数据库名 第二个代表表名 *.*意味着所有数据库的数据表都授权给该用户

           root@"%"    root表示授予账号 “%”表示授权用户的IP指定,%表示任意IP都能访问Mysql数据库

           “password” 表示授权账号的密码,注意password是你的密码,不要复制

          flush privileges 表示刷新权限信息,刷新后立即生效。

你可能感兴趣的:(Linux,Linux)