brew install mysql@5.7 // 安装 brew link --force mysql@5.7 // 连接 brew services start mysql@5.7 // 启动服务 brew services stop mysql@5.7 //中止 brew services restart mysql@5.7 //重启
启动以后,输入一行命令mysql
mysql_secure_installation
5.7.x对设置的密码有严格的要求,分为LOW、MEDIUM、STRONG三个等级,对应要求以下:sql
LOW Length >= 8 MEDIUM Length >= 8, numeric, mixed case, and special characters STRONG Length >= 8, numeric, mixed case, special characters and dictionary file
选low便可,输入8位,我这里使用12345678 ,其余一路y确认便可。shell
➜ ~ brew services start mysql@5.7 ==> Successfully started `mysql@5.7` (label: homebrew.mxcl.mysql@5.7)
帐号:root
密码:12345678
rest