码迷,mamicode.com
首页 > 数据库 > 详细

mysql强更改root密码

时间:2016-11-19 07:55:58      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:mysqld   password   amp   mysq   tables   use   更改   update   ble   

在丢失root密码的时候,可以这样

要先停掉 mysql服务

  mysqld_safe --skip-grant-tables&

  mysql -u root mysql

  mysql> UPDATE user SET password=PASSWORD("new password") WHERE user=‘root‘;

  mysql> FLUSH PRIVILEGES;

mysql强更改root密码

标签:mysqld   password   amp   mysq   tables   use   更改   update   ble   

原文地址:http://www.cnblogs.com/gpfeisoft/p/6079773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!