步骤
- 前往MySQL官网下载MySQL Community Server并安装,安装时密码格式选择Use Legacy Password Encryption,输入自己想设定的密码,一直下一步即可安装完毕。
- 打开终端Terminal输入
mysql -u root -p
, 然后输入密码登陆数据库。
command not found 排错
⚠️如果出现command not found说明没有配置终端Terminal环境变量,需要执行如下步骤:
打开终端Terminal
cd/Users/你的用户名(如果已经在用户名文件夹下可跳过此步)
创建
.bash_profile
文件
终端Terminal内输入1
touch .bash_profile
如果报错说明已经有这个文件,该文件默认是隐藏文件,可以打开Finder到你的用户名文件下,点击cmd+shift+。来显示隐藏文件
编辑
.bash_profile
文件 (如果无法编辑显示已锁定,可以复制.bash_profile的内容到别的地方比如备忘录等留作备份,删除.bash_profile
文件,从第3步重来)
终端Terminal内输入1
open -e .bash_profile
来打开并编辑
.bash_profile
文件。只查看的话可以去掉-e或者cat .bash_profile在打开的文本中加入
1
2export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
export PATH=${PATH}:/usr/local/mysql/bin保存并关闭。
使配置生效
终端Terminal输入1
source ~/.bash_profile
来编译文件使之生效。
接下来输入mysql -u root -p就可以登陆了。
终端软件iTerm2 MySQL command not found解决思路
同Mac自带的终端Terminal思路相同,配置一下.bash_profile就可以。
打开iTerm2输入
1 | source ~/.bash_profile |
编译文件使之在iTerm2内生效即可。
参考
About this Post
This post is written by Andy, licensed under CC BY-NC 4.0.