mysql丢失密码后解决方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql丢失密码后解决方法相关的知识,希望对你有一定的参考价值。

多实例mysql密码丢失破解

# ps -ef |grep 3308     # 查看3308实例的PID
# kill PID              #kill PID
# mysqld_safe --defaults-file=/data/3308/my.cnf --skip-grant-table 2>&1 >/dev/null &
# mysql -S /data/3308/mysql.sock 
> update mysql.user set password=PASSWORD("0818") where user=‘root‘ and host=‘localhost‘;
> flush privileges;
> quit
# ps -ef |grep 3308
# kill pid
# /data/3308/mysql start
# mysql -uroot -p0818 -S /data/3308/mysql.sock 
Welcome to the MySQL monitor.  Commands end with ; or \g.
......
mysql>


本文出自 “麦科” 博客,请务必保留此出处http://25398.blog.51cto.com/15398/1936727

以上是关于mysql丢失密码后解决方法的主要内容,如果未能解决你的问题,请参考以下文章

redis设置密码,解决重启后密码丢失及自启服务配置

使用SKIP-GRANT-TABLES 解决 MYSQL ROOT密码丢失(转)

配置更改后片段丢失过渡动画

MySQL修改root密码的多种方法(包括丢失密码)

修改MySQL密码报错“ERROR 1819 (HY000): Your password does not satisfy the current policy requirements“(代码片段

连接MySQL出现错误:ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password: YES)(代码片段