Article
macOS安装MySQL,使用Navicat连接MySQL数据库/2022
00 分钟
2022-3-8
2023-7-18
type
status
category
date
slug
summary
tags
icon
Last edited time
Jul 18, 2023 12:42 PM
intel chip

下载安装文件

进入官网
选择页尾MySQL Community Server
notion image
选择合适的版本,.tar.gz是压缩包,.dmg是可安装文件,随便下一个就行
notion image
询问是否登陆,直接no thanks
notion image

安装MySQL

双击dmg文件,点击pkg
一路allow 和 continue
此处选择 Use Strong Password Encryption
notion image
给root用户设置一个密码
notion image
至此安装完成

配置环境变量

终端键入echo $SHELL
notion image
如果自己没做过修改的话,应该是/bin/bash,我之前修改过,所以是zsh

bash方式

终端键入
notion image
i进入编辑插入模式
notion image
添加语句 PATH=$PATH:/usr/local/mysql/bin
notion image
按一下Ese,然后输入:wq,屏幕下方会显示
notion image
回车,则完成修改文件
终端输入:source ~/.bash_profile,重新执行此文件,即可

zsh方式

与bash基本类似,开头修改的文件则是.zshrc
notion image
至此mysql命令已被终端识别

登陆Mysql

终端键入mysql -uroot -p
提示输入密码,此处密码是安装的时候设置的密码
notion image

使用Navicat连接MySql

notion image
点击左上角Connection → MySQL
Connection Name中随便写个名字,下面的password中输入安装MySQL时候设置的密码
notion image
在新建的Connection中右键,Open Connection
notion image
能打开既成功
notion image

评论