【Mysql安装】Mac下安装mysql

一、使用homebrew命令安装

brew install mysql

安装完会有类型的安装路径:/Users/zhangboqing/homebrew/Cellar/mysql/8.0.19/bin
可以为mysql命令建立软连接

ln -s /Users/zhangboqing/homebrew/Cellar/mysql/8.0.19/bin/mysql /usr/bin

二、其他命令

1、启动和关闭数据库
brew services start mysql
brew services stop mysql

2、连接数据库

mysql -uroot; //无密码登陆数据库

猜你喜欢

转载自www.cnblogs.com/756623607-zhang/p/12811579.html