码迷,mamicode.com
首页 > 数据库 > 详细

centos7下mariadb 忘记密码处理方法

时间:2016-02-27 16:37:17      阅读:492      评论:0      收藏:0      [点我收藏+]

标签:localhost   password   忘记密码   数据库   update   

systemctl stop mariadb ==>停止mariadb数据库

mysqld_safe --skip-grant-table ==>进入单机模式

use mysql;==>进入mysql库

update user set password=password(新密码) where user=‘root‘ and host=‘localhost‘;==>设置新密码

flush privileges;==>刷新

新开窗口 mysqladmin -uroot -p shutdown ==>新密码测试关掉数据库,成功关闭就证明修改成功

systemctl start mariadb ==>重启服务


本文出自 “蓝色的天空” 博客,请务必保留此出处http://shurk.blog.51cto.com/1134443/1745539

centos7下mariadb 忘记密码处理方法

标签:localhost   password   忘记密码   数据库   update   

原文地址:http://shurk.blog.51cto.com/1134443/1745539

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!