If you forgot your password or want to change it to your mysql:
sudo su
sudo /usr/local/mysql/support-files/mysql.server stop
mysql -u root
UPDATE mysql.user SET authentication_string=PASSWORD('new_password') WHERE User='root';
where "new_password" - your new pass. You don't need old pass for mysql.
FLUSH PRIVILEGES;