Forgotten Mysql root password
https://stackoverflow.com/questions/7534056/mysql-root-password-change
sudo service mysql stopsudo mysqld_safe --skip-grant-tables(You may need to ^c or ^z to return to CLI)sudo service mysql startsudo mysql -u rootuse mysql;show tables;describe user;update user set authentication_string=password('1111') where user='root';(on some versions usePasswordinstead ofauthentication_string)login with password 1111