Heim  >  Artikel  >  Datenbank  >  Linux下重置MySQL密码_MySQL

Linux下重置MySQL密码_MySQL

WBOY
WBOYOriginal
2016-06-01 13:35:411152Durchsuche

bitsCN.com

Linux下重置MySQL密码

 

据有关资料显示,人能记住的密码一般不多,很多时候人都是多账户同密码的办法来设置密码的。但一般来说,经常需要接触的账户密码是不会忘记的。但偏偏也有可能有忘记的时候,下面就介绍下在Linux环境下忘记MySQL密码的解决方法。其实很简单,只需要六个步骤就可以解决问的。不多说闲话,进入话题:

1、关闭MySQL服务:

 

service mysqld stop

 

2、执行下面命令,跳出安全模式,当然,这条命令大概只在localhost的时候有效。

 

/usr/local/mysql/bin/mysqld_safe –skip-grant

3、进入 MySQL

 

/usr/local/mysql/bin/mysql -u root -p 进入mysql

 

4、更改密码,执行下面语句:

 

use mysql;

 

UPDATE user SET Password=password(“XXX”) WHERE User=”root”; 其中,XXX是你要设置的密码

 

flush privileges;

 

exit;

 

5、去掉配置文件中的 skip-grant,修改配置文件,linux下配置文件为my.cnf ,windows下配置文件为my.ini,在[mysqld]下添加

 

skip-grant

 

6、启动 MySQL 服务:

 

service mysqld start

bitsCN.com
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