因为开发须要,有时咱们须要可以远程访问连接数据库。默认mysql设置关闭了远程访问。咱们能够经过修改设置来达到目的mysql
$ cd /etc/mysql $ sudo vim my.cnf
在文件中将bind-address = 127.0.0.1注释掉(即在行首加#)
旧版本的MySQL(从一些资料上显示是5.0及其之前的版本)上使用的是skip-networking。
建立一个mysql用户,并设置能够远程访问sql
grant usage on *.* to 'fred'@'localhost' identified by 'fred';//建立用户fred密码ferd select host,user,password from mysql.user where user='fred';//查看记录 grant all privileges on *.* to fred@'%'identified by 'fred';//设置能够远程访问
grant usage on *.* to 'fred'@'localhost' identified by 'fred';//建立用户fred密码ferd select host,user,password from mysql.user where user='fred';//查看记录 grant all privileges on *.* to fred@'%'identified by 'fred';//设置能够远程访问