LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 845|回复: 3

我把用户和密码给忘了,怎么办呀?

[复制链接]
发表于 2004-4-11 20:55:46 | 显示全部楼层 |阅读模式
[root@wake bin]# ./mysql -uroot -p
Enter password:
ERROR 1045: Access denied for user: 'root@localhost' (Using password: YES)
[root@wake bin]#
怎么办呀?
 楼主| 发表于 2004-4-12 13:32:09 | 显示全部楼层
mysql_install_db
发表于 2004-4-13 23:02:08 | 显示全部楼层
按照如下方法操作:

关闭mysql
然后,safe_mysqld --skip-grant-tables
启动mysql。

mysql -u root
mysql> use mysql
mysql> UPDATE user SET Password=PASSWORD('xxx') WHERE user='root';
mysql> FLUSH PRIVILEGES;
发表于 2004-4-15 11:54:33 | 显示全部楼层
是不是 mysqld_safe ?
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表