|

楼主 |
发表于 2006-9-5 08:19:41
|
显示全部楼层
已经解决
# /usr/bin/safe_mysqld --skip-grant-tables &
On Red Hat Enterprise Linux 4, safe_mysqld has been changed to
mysqld_safe.
# mysql -u root mysql
mysql> UPDATE user SET Password=PASSWORD('new_password') WHERE user='root';
mysql> FLUSH PRIVILEGES;
mysql> exit; |
|