flask 创建数据库时,出现mysql服务拒绝 ,发现是没有开启mysql远程连接配置 ,记录下解决方法
1、修改服务器ubuntu下mysql配置文件
sudo vim /etc/mysql/mysql.conf.d/mysqld.cnf
bind-address =127.0.0.1
更改为
bind-address =0.0.0.0
2、支持root账号远程连接mysql数据库
grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
flush privileges;
3、查看结果