Heim >Datenbank >MySQL-Tutorial >MySQL 忘记root密码解决办法_MySQL

MySQL 忘记root密码解决办法_MySQL

WBOY
WBOYOriginal
2016-05-27 13:46:43900Durchsuche

概述  

 

很多时候mysql安装完root用户的默认密码不为空,这时候就需要通过其它办法登入到mysql重置密码。

 

 

 

步骤

 

方法1:查看/root/.mysql_secret文件

 

安装mysql第一次会生成一个随机密码,可以用该密码登入,随机的密码已经生成 可以在  '/root/.mysql_secret'. 中找到。

 

 

 

方法2:使用mysqladmin

 

mysqladmin无法修改密码

 

mysqld_safe --skip-grant-tables &

 

mysql -uroot -p

 

use mysql;

 

update user set password=PASSWORD("newpassword")where user="root";

 

flush privileges;

 

quit 

 

 

 

方法3:添加"skip-grant-tables"

 

在/etc/my.cnf [mysqld] 配置部分添加"skip-grant-tables"

 

重启mysql服务

 

service mysqld restart

 

登入mysql

 

mysql -uroot -p mysql

 

use mysql;

 

update user set password=password("password") where user='root';

 

更新

 

flush privileges;

 

删除/etc/my.cnf [mysqld] 配置部分的"skip-grant-tables"

 

重启mysql服务

 

service mysqld restart

 

使用新密码登入

 

mysql -uroot -p

 

 

 

修改完密码第一次登入可能会报错‘ERROR 1820 (HY000): You must SET PASSWORD before executing this statement ’,需要重新修改当前登入密码。

 

 

 

修改当前用户密码

 

SET PASSWORD = PASSWORD('123456')

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Vorheriger Artikel:mysq安装总结_MySQLNächster Artikel:MySql中的函数_MySQL