Mac OS X에서 brew를 이용한 Mysql 쉽게 설치하기는 방법입니다.우선적으로 Homebrew가 설치 되어 있어야 합니다. Homebrew 정보 업데이트:brew updatebrew doctorbrew upgrade MySQL 설치하기:brew install mysql Secure your MySQL 설치:mysql_secure_installation Run the following two commands to allow Mysql to run under your user account:unset TMPDIRmysql_install_db --verbose --user=`whoami` \\--basedir="$(brew --prefix mysql)" \\--datadir=/usr/local/var/..