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文件的时候停止数据库,更改文件后再重新启动配置。
上一篇: IDEA中安装SVN
推荐阅读
-
虚拟机Linux系统忘记密码修改root或其他用户密码的方法
-
CentOS7.2 忘记root密码及重置root密码的简单处理方法
-
阿里云Linux CentOS 7.2下自建MySQL的root密码忘记的解决方法
-
Mysql非安装版使用步骤及忘记密码解决方法
-
Shell脚本中非交互式修改密码的两种方法
-
Mac下忘记Mysql的root用户密码的解决方法
-
Django 忘记管理员或忘记管理员密码 重设登录密码的方法
-
使用phpMyAdmin修改MySQL数据库root用户密码的方法
-
MySQL8下忘记密码后重置密码的办法(MySQL老方法不灵了)
-
mysql5.7版本root密码登录问题的解决方法