python连接远程mysql数据库 拒绝
Posted ioan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python连接远程mysql数据库 拒绝相关的知识,希望对你有一定的参考价值。
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数据库 拒绝的主要内容,如果未能解决你的问题,请参考以下文章