MySQL command not found? Looking tru this forum https://stackoverflow.com/questions/10577374/mysql-command-not-found-in-os-x-10-7
echo 'export PATH="/usr/local/mysql/bin:$PATH"' >> ~/.bash_profile
To connect to MySQL prompt
mysql -u root -p
Change the MySQL password permanently
mysql -u root -p
ALTER USER `root`@`localhost` IDENTIFIED BY 'password', `root`@`localhost` PASSWORD EXPIRE NEVER;
