CentOS7 忘记MySQL密码
程序员文章站
2022-05-11 12:08:18
...
最近弄了个阿里云,选的CentOS7系统,装上MySQL之后,重置了密码,两天没用密码就忘记了。
于是搜索了一下相关解决方法
参考
-
第一步
vim /etc/my.cnf
加入 skip-grant-tables
-
第二步
重启MySQL
systemctl restart mysqld
-
第三步
可以直接进入MySQL,不用输入密码
mysql -uroot -p
-
第四步
修改密码
update mysql.user set authentication_string=password("你的密码") where user="root";
-
第五步
退出数据库,重新编辑my.cnf文件,去除 skip-grant-tables
vim /etc/my.cnf
-
第六步
重启数据库,否则依然是无密码进入模式。