MySQL远程连接访问
在普通Linux下配置:
在这个配置文件
/etc/mysql/my.cnf
修改:
bind-address = 127.0.0.1
修改为
#bind-address = 127.0.0.1
或者
bind-address = 0.0.0.0
Ubuntu下配置:
首先在这里卖个关子,推荐使用的Ubuntu版本是Ubuntu 15.04,因为截止到写博客时间为止,Ubuntu 14.04和Ubuntu 15.10都有些问题,主要是安装不上MySQL Workbench,其实也不是什么大问题,主要因为软件版本依赖问题,如果不想解决依赖引用问题的同学或者朋友请使用Ubuntu 15.04
Ubuntu安装MySQL
sudo apt-get install mysql-server
执行一个执行就可以使用了,简单方便
配置远程访问
首先要说明的就是Ubuntu下的配置文件在:/etc/mysql/mysql.conf.d/mysqld.cnf
/etc/mysql/mysql.conf.d/mysqld.cnf
- 配置文件:
修改:
bind-address = 127.0.0.1
修改为
#bind-address = 127.0.0.1
或者
bind-address = 0.0.0.0
用户授权
grant all on . to username@'%' identified by 'password
重启
sudo /etc/init.d/mysql restart
解决