标签: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
标签:localhost password 忘记密码 数据库 update
原文地址:http://shurk.blog.51cto.com/1134443/1745539