- 修改 mysqld.cnf
/etc/mysql/mysql.conf.d/mysqld.cnf
增加一行
[mysqld]
....
skip-grant-tables
...
- 重啟 mysql
sudo /etc/init.d/mysql restart
- 直接登錄mysql
mysql
- 修改密碼
update mysql.user set authentication_string=password('password') where host='localhost' and user='root';
flush privileges;
- 注釋掉第一步添加的內(nèi)容
[mysqld]
....
# skip-grant-tables
...
- 重啟 mysql
sudo /etc/init.d/mysql restart
- 即可使用新的密碼登錄了