mysql 忘记密码
一, 停止mysql程序
/etc/init.d/mysqld stop 或者 kill 杀mysql的进程id
通过安全模式启动数据库
mysqld_safe --skip-grant-tables --skip-networking &
查看原来数据库密码字段信息
更改密码:
5.6版本
update mysql.user set password=PASSWORD('123') where user='root' and host='localhost';
5.7版本以上
update mysql.user set authentication_string=PASSWORD('123') where user='root' and host='10.0.0.%';
人生就像一滴水,非要落下才后悔!
--kingle