brew安装MysqL的方法:1、执行“brew install MysqL@5.7”命令;2、启动MysqL;3、登录MysqL并修改默认密码即可。
本文操作环境:macOS10.15系统、MysqL5.7版、macbook pro 2020电脑。
brew怎么安装MysqL?
Mac使用brew安装MysqL
若不考虑版本直接执行以下命令
brew install MysqL
若要选择版本只要加上@版本即可,例如
brew install MysqL@5.7
安装完后启动MysqL
MysqL.server start
若服务未启动就会出现以下错误
ERROR 2002 (HY000): Can't connect to local MysqL server through socket '/tmp/MysqL.sock' (2)
MysqL.server stop
看到提示success则表示启动成功
Starting MysqL . SUCCESS!
MysqL -u root
alter user 'root'@'localhost' identified with MysqL_native_password by 'root';
Query OK, 0 rows affected (0.00 sec)
exit;
最后重新登录
MysqL -u root -p
在输入密码则登录成功
【相关推荐:mysql视频教程】