欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

mysql5.7忘记密码修改方法

程序员文章站 2022-06-17 21:49:32
mysql5.7忘记密码修改方法 mysql是开发中最常用的关系数据库之一。一般在安装数据库到时候会自定义root密码,有时候会忘记该密码,这时候需要对数据库进行密码修改。 一、windows下更改mysql数据库密码 在windows下找到my.ini文件,例如:C:\ProgramData\My ......

mysql5.7忘记密码修改方法

      mysql是开发中最常用的关系数据库之一。一般在安装数据库到时候会自定义root密码,有时候会忘记该密码,这时候需要对数据库进行密码修改。

一、windows下更改mysql数据库密码

     在windows下找到my.ini文件,例如:c:\programdata\mysql\mysql server 5.7,打开该文件夹下的my.ini文件,找到[mysqld]然后添加skip-grant-tables,意味着跳过密码验证。打开cmd,输入mysql -u root -p回车会直接进入如下:

welcome to the mysql monitor.  commands end with ; or \g.
your mysql connection id is 184
server version: 5.7.22-log mysql community server (gpl)

copyright (c) 2000, 2018, oracle and/or its affiliates. all rights reserved.

oracle is a registered trademark of oracle corporation and/or its
affiliates. other names may be trademarks of their respective
owners.

type 'help;' or '\h' for help. type '\c' to clear the current input statement.

mysql>

  使用mysql数据库,输入:use mysql;

  更换数据库进行如下操作:

mysql> update user set authentication_string = password("123456") where user = "root";
query ok, 0 rows affected, 1 warning (0.00 sec)
rows matched: 1  changed: 0  warnings: 1
mysql> flush privileges;       --刷新

  这样以后退出数据库,重新输入mysql -u root -p,输入密码就可以进入了。

二、centos下更改mysql数据库密码

       centos下更改root密码与windows下的做法类似,不过windows下的设置文件在my.ini下,而centos则更改的是my.cnf文件。输入vim /etc/my.cnf。后面的做法与windows下的更改密码方式相同。

备注:
  如果没有成功,可以在更改my.ini或my.cnf文件的时候停止数据库,更改文件后再重新启动配置。