centos mysql8解决Access denied for user ‘root‘@‘localhost‘ (using password: YES)
centos mysql8解决Access denied for user 'root'@'localhost' (using password: YES)
·
环境
系统:CentOS Stream release 9
mysql版本:mysql Ver 8.0.34 for Linux on x86_64
问题
mysql登录提示
Access denied for user 'root'@'localhost' (using password: YES)
解决方法
编辑 /etc/my.cnf ,在[mysqld] 部分最后添加一行
skip-grant-tables
保存后重启mysql
systemctl restatus mysqld
输入以下命令,回车后输入密码再回车登录Mysql
mysql -uroot -p mysql
重新设置密码,其中 your_pwd 部分改为你自己想要设置的密码
update user set password=password(“your_pwd”) where user=‘root’;
刷新权限
flush privileges;
修改完成后my.cnf删除skip-grant-tables
想要修改成简单密码
修改密码策略
set global validate_password.policy=LOW;
set global validate_password.length=6;
刷新权限
flush privileges;
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献9条内容
所有评论(0)