报错:pymysql.err.OperationalError: (1045, “Access denied for user ‘root‘@‘192.168.118.44‘
Posted handsomeboy-东
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了报错:pymysql.err.OperationalError: (1045, “Access denied for user ‘root‘@‘192.168.118.44‘相关的知识,希望对你有一定的参考价值。
报错:pymysql.err.OperationalError: (1045, “Access denied for user ‘root’@‘192.168.118.44’ (using password: YES)”)
可能的问题:
1、防火墙阻挡,
解决方法:登录服务器关闭防火墙
systemctl stop firewalld.service
2、用户赋权问题(我这里用的root用户)
解决方法:登录MySQL数据库进行赋权
grant all privileges on *.* to 'root'@'%' identified by '密码';
flush privileges;
3、检查密码是否输入错误
以上是关于报错:pymysql.err.OperationalError: (1045, “Access denied for user ‘root‘@‘192.168.118.44‘的主要内容,如果未能解决你的问题,请参考以下文章