1. 安装包下载
下载链接:https://downloads.mysql.com/archives/community/
为了安装更方便,建议下载和mac电脑版本匹配的mysql的dmg安装包,我的电脑Mac版本是12.5的,所以下载(mysql-8.0.30-macos12-arm64.dmg)
2. 安装MySQL
双击 mysql-8.0.30-macos12-arm64.dmg 文件,加载镜像
双击 mysql-8.0.30-macos12-arm64.pkg , 开始安装
一直点击继续, 然后设置密码(中间会出现让选择一下 ,我选的下面的选项,选完继续)
点击 Finish 按钮,即安装成功。
3. 配置mysql
打开Mac终端连接,输入mysql
joyful@xiaofengaichixihongshideMacBook-Pro ~ % mysql
zsh: command not found: mysql
说明还没设置环境变量,即在终端通过vim编辑 .zshrc 配置文件
joyful@xiaofengaichixihongshideMacBook-Pro ~ % sudo vim ~/.zshrc
打开后,按下 i 键,进入编辑模式,在配置文件中添加如下:
#MySQL export PATH=$PATH:/usr/local/mysql/bin
然后在按 esc 键退出编辑模式,在输入 :wq !退出并保存
然后在执行 source ~/.zshrc 使环境变量配置生效
joyful@xiaofengaichixihongshideMacBook-Pro ~ % source ~/.zshrc
然后在终端执行 mysql --version 查看版本
joyful@xiaofengaichixihongshideMacBook-Pro ~ % mysql --version
mysql Ver 8.0.30 for macos12 on arm64 (MySQL Community Server - GPL)
出现上面的信息,说明环境变量配置正常
4.使用mysql
使用命令:mysql -u root -p,输入密码进入mysql,就可以正常操作mysql数据库了
joyful@xiaofengaichixihongshideMacBook-Pro ~ % mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 Server version: 8.0.30 MySQL Community Server - GPL Copyright (c) 2000, 2022, Oracle and/or its affiliates. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql>
5.mac查看mysql
打开系统偏好设置,点击MySQL图标,进入MySQL的设置界面,可以启动或者停止mysql 服务
标签:8.0,30,Pro,MySQL,Mac,mysql,joyful,图文 From: https://www.cnblogs.com/fengziyi/p/16821895.html