brew安装
代码语言:javascript复制/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
MySQL
代码语言:javascript复制brew install mysql@5.7
echo 'export PATH="/opt/homebrew/opt/mysql@5.7/bin:$PATH"' >> ~/.zshrc
# 重开窗口
mysql.server start
mysql -u root
use mysql;
alter USER root@localhost IDENTIFIED BY 'root123';