如果 MySQL 正在运行,首先杀之: killall -TERM mysqld。
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)启动 MySQL :/usr/bin/safe_mysqld --skip-grant-tables &
(本文来源于图老师网站,更多请访问http://m.tulaoshi.com/bianchengyuyan/)就可以不需要密码就进入 MySQL 了。
然后就是
use mysql
update user set password=password("new_pass") where user="root";
flush privileges;
重新杀 MySQL ,用正常方法启动 MySQL 。
Redhat的safe_mysqld在/usr/bin下, 而使用tarball缺省安装在/usr/local/bin下。