sudo su先取得管理员权限
mysql -u root -p然后输入你初次安装mysql设置的密码就进去了
使用mysql
use mysql;
更新root密码
mysql> UPDATE user SET Password=PASSWORD('newpassword') where USER='root';
最新版MySQL请采用如下SQL:
mysql> UPDATE user SET authentication_string=PASSWORD('newpassword') where USER='root';
刷新权限
mysql> FLUSH PRIVILEGES;
退出mysql
mysql> quit
重启mysql
/etc/init.d/mysqld restart
使用root用户重新登录mysql
mysql -uroot -p
Enter password: <输入新设的密码newpassword>