Home > Database > Mysql Tutorial > body text

如何修改mysql密码及忘记mysql密码修改办法

WBOY
Release: 2016-06-07 17:52:03
Original
1511 people have browsed it

本文章总结了几种方法来修改mysql密码,一种是在你记得的情况下修改你的mysql密码,一种是你不记得密码找回或修改mysql密码的方法。

mysql如何设置密码

有很多方法:
1.用root 进入mysql后
mysql>set pass =password('你的密码');
mysql>flush privileges;

2.使用GRANT语句
mysql>grant all on *.* to 'root'@'localhost' IDENTIFIED BY '你的密码'with grant option ; www.2cto.com
mysql>flush privileges;

3.进入mysql库修改user表
mysql>use mysql;
mysql>update user set password=password('你的密码') where user='root';
mysql>flush privileges;


忘记mysql密码解决办法


1、编辑MySQL配置文件:

windows环境中:%MySQL_installdir%my.ini //一般在MySQL安装目录下有my.ini即MySQL的配置文件。
环境中:/etc/my.cnf

在[MySQLd]配置段添加如下一行:
skip-grant-tables

保存退出编辑。

2、然后重启MySQL服务

windows环境中:
net stop MySQL
net start MySQL

linux环境中:
/etc/init.d/MySQLd restart

3、设置新的ROOT密码

然后再在命令行下执行:
MySQL -uroot -p MySQL
直接回车无需密码即可进入了。

现在我们执行如下语句把root密码更新为 7758521:
update user set password=PASSWORD("7758521") where user='root';

quit 退出MySQL。

4、还原配置文件并重启服务

然后修改MySQL配置文件把刚才添加的那一行删除。

再次重起MySQL服务,密码修改完毕。

修改完毕。

用新密码7758521试一下吧,又能登入MySQL的感觉就是不一样吧?

其它解决办法

重置root密码
 方法一:
 在my.ini的[mysqld]字段加入:
skip-grant-tables
重启mysql服务,这时的mysql不需要密码即可登录数据库
 然后进入mysql
mysql>use mysql;
 mysql>更新 user set password=password('新密码') WHERE User='root';
mysql>flush privileges;
 运行之后最后去掉my.ini中的skip-grant-tables,重启mysqld即可。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!