[读书笔记]mysql 找回丢失的root密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[读书笔记]mysql 找回丢失的root密码相关的知识,希望对你有一定的参考价值。
1.停止数据库
service mysql stop
or
/etc/init.d/mysql stop
2.使用下列语句登陆服务器
mysqld_safe --skip-grant-tables --user=root &
3.使用update命令修改密码
update user
set password=password(‘new-password‘)
where user=‘root‘;
密码修改之后刷新
flush privileges
4.退出并重新启动数据库
mysqladmin -u root -p shutdown;
service mysql start
or
/etc/init.d/mysql start
以上是关于[读书笔记]mysql 找回丢失的root密码的主要内容,如果未能解决你的问题,请参考以下文章