博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql密码重置
阅读量:6234 次
发布时间:2019-06-22

本文共 1387 字,大约阅读时间需要 4 分钟。

一段时间没用,又忘记了我的mysql密码了,怎样去重置密码呢?

先mark下以防下次又忘记了
其实感觉mysql的数据库的加载和oracle的加载有点相似。。。

  • Step # 1: Stop the MySQL server process.
  • Step # 2: Start the MySQL (mysqld) server/daemon process with the –skip-grant-tables option so that it will not prompt for password.
  • Step # 3: Connect to mysql server as the root user.
  • Step # 4: Setup new mysql root account password i.e. reset mysql password.
  • Step # 5: Exit and restart the MySQL server.

ok,五步,开始!

Step # 1 : 停止sql服务

/etc/init.d/mysql stop

输出 Stopping MySQL database server: mysqld.

Step # 2: 启动mysql服务镜像

mysqld_safe --skip-grant-tables &

输出

Starting mysqld daemon with databases from /var/lib/mysql
mysqld_safe

Step # 3: 以mysql服务的方式去链接数据库

mysql -u root

输出显示

Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.1.15-Debian_1-log
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>

Step # 4: 为root用户设置新的密码

mysql> use mysql;mysql> update user set password=PASSWORD("你的密码") where User='root';mysql> flush privileges;mysql> quit

Step # 5: 启动mysql服务

/etc/init.d/mysql stop

Stopping MySQL database server: mysqld

STOPPING server from pid file /var/run/mysqld/mysqld.pid
mysqld_safe[6186]: ended
[1]+ Done mysqld_safe --skip-grant-tables</pre>

Step # 6: 验证

/etc/init.d/mysql start mysql -u root -p

输入这条命令按enter键后再输入密码,就能进去数据库啦!

reference:

转载于:https://blog.51cto.com/11834557/2309880

你可能感兴趣的文章
C#之MVC中使用Log4Net
查看>>
国密算法--Openssl 实现国密算法(基础介绍和产生秘钥对)
查看>>
汇编实验九:根据材料编程,显示字符串
查看>>
scp拷贝文件报错-bash: scp: command not found
查看>>
pNFS系统部署过程
查看>>
Java数据结构与算法(28) - ch13图(广度优先搜索)
查看>>
关系型数据库和非关系型数据库的简单对比
查看>>
在按钮上添加倒计时激活功能(转自手册网)
查看>>
java 线程学习。
查看>>
更改系统内核版本
查看>>
K8s和docker的使用
查看>>
C# 指针操作图像 二值化处理
查看>>
docker中出现容器未运行无法进入容器的操作
查看>>
TCP/UDP
查看>>
Selenium学习(9) 测试模型
查看>>
【机器学习】--FP-groupth算法从初始到应用
查看>>
WPF几个核心类的类层次结构
查看>>
浏览器访问设备出现白条
查看>>
可变参数
查看>>
关于最近学习出现的错误,及解决的想法
查看>>