September 15, 2022

Mac安装MySQL

步骤

  1. 前往MySQL官网下载MySQL Community Server并安装,安装时密码格式选择Use Legacy Password Encryption,输入自己想设定的密码,一直下一步即可安装完毕。
  2. 打开终端Terminal输入mysql -u root -p, 然后输入密码登陆数据库。


command not found 排错

⚠️如果出现command not found说明没有配置终端Terminal环境变量,需要执行如下步骤:

  1. 打开终端Terminal

  2. cd/Users/你的用户名(如果已经在用户名文件夹下可跳过此步)

  3. 创建.bash_profile文件
    终端Terminal内输入

    1
    touch .bash_profile

    如果报错说明已经有这个文件,该文件默认是隐藏文件,可以打开Finder到你的用户名文件下,点击cmd+shift+。来显示隐藏文件

  4. 编辑.bash_profile文件 (如果无法编辑显示已锁定,可以复制.bash_profile的内容到别的地方比如备忘录等留作备份,删除.bash_profile文件,从第3步重来)
    终端Terminal内输入

    1
    open -e .bash_profile

    来打开并编辑.bash_profile文件。只查看的话可以去掉-e或者cat .bash_profile

    在打开的文本中加入

    1
    2
    export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
    export PATH=${PATH}:/usr/local/mysql/bin

    保存并关闭。

  5. 使配置生效
    终端Terminal输入

    1
    source ~/.bash_profile

    来编译文件使之生效。

  6. 接下来输入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.

#macOS#Software#MySQL