标签:密码修改 .net ref err ror code sql ace 修改
以安全模式启动mysql,可以直接以root身份登录,然后重设密码。下面是具体步骤
1.停掉在运行的MySQL服务:
service mysqld stop
2.安全模式启动mysql:
sudo mysqld_safe --skip-grant-tables --skip-networking &
3.直接用root登录,无需密码:
mysql -uroot -p
4.重设密码:
update usersetauthentication_string=password(‘password‘) where user=‘root‘; >> mysql5.6及以下
update user set authentication_string=password(‘password‘) where user=‘root‘; >>mysql5.7+
5.刷新并重启
flush privileges;
Linux下mysql的root密码修改方法(ERROR 1054)
标签:密码修改 .net ref err ror code sql ace 修改
原文地址:http://www.cnblogs.com/dudumao/p/7407399.html