CentOs8 MySQL8.0.31 忘记密码修改密码
最近忙一段时间没有上来忘记了MySQL得密码了,因为之前得5.7 版本得不一样所以还修改不了 ,啊哈哈
首先进去vim /etc/my.cnf 在[mysqld]
下面 插入skip-grant-tables :wq 保存退出 systemctl restart mysqld
然后登录mysql -uroot -p 直接进入数据库 use mysql;
select * from user\G; 查看root用户得密码值; authentication_string 密码列
authentication_string: $A$005$YLI`g3'.hwB:Bzbj8X19iF0PJiaImZyNTOd0rOaQSC5iBWcNaZCkU2uXrYR5
update user set authentication_string ="" where user = "root"; #把密码设置为空;
属性的字段值需要使用单引号(’’),或者双引号("")包裹。
使用的是MySQL8.0,所以使用的是authentication_string,而不是password。
使用另外一个窗口打开
去/etc/my.cnf 中注释掉skip-grant-tables;
在原有得窗口中flush privileges; 刷新一下权限
alter user 'root'@'%' identified by '你想要改得密码';
exit; 重新登录mysql 即可
mysql -uroot -p 你的密码