cd /usr/local/mysql/bin
./mysqld_safe --skip-grant-tables &
启动之后,使用 ./mysql -u root -p 回车,提示输入密码直接回车
然后use mysql,
update user set password=password(‘new_pass’) where user=‘root’;
若提示password列不存在,请执行 update user set authentication_string=password('new_password') where user='root';
成功即可退出