码迷,mamicode.com
首页 > 数据库 > 详细

数据库忘记密码

时间:2018-11-05 11:14:28      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:ble   hive   输入密码   权限   my.cnf   http   arch   tab   HERE   

[root@localhost]# mysql -uroot -p

Enter password:

ERROR 1045 (28000): Access denied for user ‘root’@’localhost’ (using password: YES)

root 密码忘记了。
解决思路:目前是进入不了数据库的情况,所以我们要考虑是不是可以跳过权限。因为在数据库中,MySQL 数据库中 user 表记录着我们用户的信息。

解决方法:启动 MySQL 数据库的过程中,可以这样执行:

/usr/local/mysql/bin/mysqld_safe –defaults-file=/etc/my.cnf  –skip-grant-tables &

这样启动,就可以不用输入密码,直接进入 MySQL 数据库了。然后在修改你自己想要改的 root 密码,然后重启 mysql。

update mysql.user set password=password(‘root123‘) where user=‘root‘;

#新密码为 root123

参考:
http://www.yunweipai.com/archives/22031.html

数据库忘记密码

标签:ble   hive   输入密码   权限   my.cnf   http   arch   tab   HERE   

原文地址:https://www.cnblogs.com/klvchen/p/9907600.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!