解决Linux下普通用户无法使用root连接MySQL服务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Linux下普通用户无法使用root连接MySQL服务相关的知识,希望对你有一定的参考价值。
最近在Ubuntu18.04上安装了mysql5.7.0版本的数据库,按照常规步骤处理完成时候发现使用普通用户(我的是Blue)执行mysql -uroot -p
即使密码正确也是连接失败的,因此你可能需要以下操作...
use mysql;
select user, plugin from mysql.user;
select @@validate_password_length;
set global validate_password_length=6;
update mysql.user set authentication_string=PASSWORD(‘123456‘), plugin=‘mysql_native_password‘ where user=‘root‘;
select @@validate_password_length;
select user, plugin from mysql.user;
flush privileges;
重启一下数据库服务:
sudo systemctl restart mysql
以上是关于解决Linux下普通用户无法使用root连接MySQL服务的主要内容,如果未能解决你的问题,请参考以下文章