# How to install and run two MySQL Server Instances on MacOSX
# MySQL Server 5.6 and Mysql server 5.7
# Mysql Server 5.7
# Download .dmg from mysql.com and install as usually
# Mysql Server 5.6
# Go to mysql.com and download Mysql tgz
# Descompact tgz
tar -xvf mysql-5.6xxx.tgz
# Move mysql to bin dir
sudo mv ~/Downloads/mysql-5.6.xxx /usr/local/
# Install mysql install db system
cd /usr/local/mysql-5.6.34-osx10.11-x86_64
Azevedo Ribeiro 4D