Set MySQL root password to NULL
Not recommended but if needed...
From the command line
sudo service mysql stop
sudo mysqld_safe --skip-grant-tables --skip-networking &
mysql -uroot
From MySQL
use mysql;
update user set password=null where User='root';
flush privileges;
quit;