数据库的远程连接
打开mysql配置文件
vim /etc/mysql/mysql.conf.d/mysqld.cnf
将bind-address = 127.0.0.1注释
#bind-address = 127.0.0.1
重新启动mysql
sudo service mysql restart
设置具有远程访问的条件
GRANT ALL PRIVILEGES ON 数据库.* TO 用户名 @'%' IDENTIFIED BY '密码';
FLUSH PRIVILEGES;