Installing MySQL on Mac OSx - jordy33/turbogears_tutorial GitHub Wiki
Download and Install MySQL for the Mac:
Version: MySQL Community Server 5.7.28 (look for previous versions to find this version) .
Open the below url to download and look for : Looking for previous GA versions?
pick version 5.7.8 .
To Download click [here]
Open Terminal and paste the following:
echo 'export PATH=/usr/local/mysql/bin:$PATH' >> ~/.zshrc
Change provisional password:
mysql -u root -p
Type provisional password and change password with the line below:
SET PASSWORD = PASSWORD('your_new_password');
[Back]