时间:2021-07-01 10:21:17 帮助过:5人阅读
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、查看结果
python连接远程mysql数据库 拒绝
标签:with info python ges image 记录 结果 sql数据库 mysql