当前位置:Gxlcms > 数据库问题 > 修改mysql5.7.16的密码

修改mysql5.7.16的密码

时间:2021-07-01 10:21:17 帮助过:4人阅读

玩大了,数据库密码没了,

编译安装的时候一直报错,没用到my.cnf,用mysql_install_db初始化的,所以,
需要用下面这条命令:
mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
(执行这条命令时最好把数据库进程kill掉)

然后进入数据库:
mysql -uroot -p
use mysql;
update mysql.user set authentication_string=password(‘newpasswd) where user=‘root‘ ;
flush privileges;

然后启动mysqld即可使用新密码成功登录

修改mysql5.7.16的密码

标签:mysqld   install   密码   use   mysql5.7   flush   成功   HERE   进程   

人气教程排行