linux忘记mysql密码解决办法

1046阅读 1评论2011-01-24 tonecan2008
分类:LINUX

    # /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>

 

 

上一篇:铁道部解决一票难求时间表 满嘴跑火车
下一篇:Linux中文乱码解决办法

文章评论