pymysql.err.OperationalError: (1045, "Access denied for user 'root'@'x.x.x.x' (using password: YES)")
报错内容:
pymysql.err.OperationalError:
(1045, "Access denied for user 'root'@'192.168.174.128' (using password: YES)")
报错原因:
可能是权限设置存在问题;
处理方法:
创建新的用户:
mysql8.0创建用户授予权限报错解决方法;
问题一:
8.0版本用之前的创建用户和赋权一条语句的方式会报错;
会报错的写法:之前版本是没问题的,但是8.0mysql会报语法错误;
创建用户、设置密码并且赋权:
grant all privileges on *.* to 'myuser'@'%' identified by 'mypassword'
with grant option;
注释:
grant 权限 on 数据库教程名.表名 to 用户@登录主机
identified by "用户密码";
问题二:
mysql8.0中必须分开,先创建用户、再给用户赋值;
创建用户:
create user '用户名'@'%' identified by '密码';
给用户分配权限:
grant all privileges on *.* to '用户名'@'%' ;
刷新权限,使操作生效:
FLUSH PRIVILEGES;
一般这种情况下就可以解决以上的报错了!!!
--------------------------------------------------------------------------------------------------------------------------------
问题二:Mysql远程连接报错:authentication plugin caching_sha2
Mysql远程连接报错:authentication plugin caching_sha2
原因:mysql 8.0 默认使用 caching_sha2_password 身份验证机制
之前版本的mysql使用的是: mysql_native_password
注:从之前版本升级 8.0 版本的不会改变现有用户的身份验证方法,
仍然采用mysql_native_password的验证方式;
但新用户会默认使用新的 caching_sha2_password;
MySQL8默认的认证插件是caching_sha2_password,很多客户端都不支持。故而连接报错;
解决方案:
方案1:
# 修改加密规则
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER;
# 更新一下用户的密码
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
# 刷新权限
FLUSH PRIVILEGES;
方案2:
修改my.cnf配置文件
将默认的认证插件修改为mysql_native_password
在my.cnf配置文件中增加配置:
default_authentication_plugin=mysql_native_password