首页 > 数据库 > MySQL > 正文

linux忘记mysql密码处理方法

2024-07-24 13:03:06
字体:
来源:转载
供稿:网友
linux忘记mysql密码处理方法:

# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> update user set password=password('newpassword') where user='root';
mysql> flush privileges;
mysql> quit
# /etc/init.d/mysql restart
# mysql -uroot -p
enter password: <输入新设的密码newpassword>
mysql>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表