忘记密码不用愁【linux下 MySQL数据库忘记密码解决方案】
程序员文章站
2022-05-09 23:44:20
...
系统版本:CentOS Linux release 7.7.1908 (Core)
mysql版本: 5.6.47 MySQL Community Server (GPL)
一、linux系统下MySQL忘记密码解决方案
1.停止mysql服务进程service mysqld stop
2.编辑MySQL的配置文件my.cnfvim /etc/my.cnf
3.重启MySQL服务systemctl restart mysqld
4.登录数据库,执行以下命令
mysql -u root
use mysql;
update user set password=password("test12") where user="root";
flush privileges;
# 注意:test12 这里是我设置的密码,在这里自定义即可。
5.重启数据库(必须重启)systemctl restart mysqld
6.使用新密码登录mysql -u root -ptest12
注意:-p后面跟密码不要加空格,否则按照表查,会报错
二、如果你也不知道你的root账户密码
上一篇: Apache Vfs Ftp 协议上传文件遇到的坑
下一篇: PHP错误:Forbidden You don't have permission to access / on this server
推荐阅读
-
Linux下MySQL的root密码忘记解决方法
-
linux下mysql的root密码忘记解决方 博客分类: 数据库
-
Windows下mysql忘记root密码的解决方法(转) 博客分类: 数据库
-
linux下mysql的root密码忘记解决方 博客分类: 数据库
-
linux/centos下忘记mysql密码 博客分类: linuxmysql
-
Linux下MySQL忘记root用户密码
-
Linux下MySQL的root密码忘记解决方法
-
linux下忘记mysql密码的几种找回方法(推荐)
-
在Linux环境下mysql的root密码忘记解决方法(三种)
-
linux下mysql的root密码忘记的解决方法