兴海北路

---男儿仗剑自横行
<2008年3月>
2425262728291
2345678
9101112131415
16171819202122
23242526272829
303112345

统计

  • 随笔 - 85
  • 文章 - 0
  • 评论 - 17
  • 引用 - 0

常用链接

留言簿(6)

随笔分类

随笔档案

收藏夹

全是知识啊

搜索

  •  

最新评论

阅读排行榜

评论排行榜

忘记mysql用户密码怎么办?
作者: falcon   发表日期: 2007-04-05 21:50   复制链接



1. stop the mysql server
$ps -ef | grep mysqld
then  kill one by one
OR
$killall -TERM mysqld

2. start the mysql server with the following command
$ /usr/bin/mysqld_safe --skip-grant-table &

3. change your password for root
mysql> use mysql;
mysql> update user set password=password("new password") where user="root";
mysql> flush privileges;
mysql> quit

4. restart the mysql server with normal mode
/etc/init.d/mysql restart

转自:
http://www.cndw.com/tech/data/2006050864444.asp
有改动

posted on 2008-03-14 16:08 随意门 阅读(213) 评论(0)  编辑 收藏 引用


只有注册用户登录后才能发表评论。
网站导航: 博客园   IT新闻   BlogJava   知识库   博问   管理