Você pode alterar e redefinir a senha de root do MySQL no Ubuntu Linux. Digite as seguintes linhas no seu terminal.
1. Stop the MySQL Server: sudo /etc/init.d/mysql stop
2. Start the mysqld configuration: sudo mysqld --skip-grant-tables &
3. Login to MySQL as root: mysql -u root mysql
4. Replace "newpassword" with your new password:
UPDATE
mysql.user
SET
Password = PASSWORD('newpassword')
WHERE
User = 'root';
FLUSH PRIVILEGES;
exit;
% bl0ck_qu0te%
Após o sucesso da passagem alterada. no entanto, funciona.
Referências: