Mysql command not found in OS X 10.7

前端 未结 15 2254
臣服心动
臣服心动 2020-12-02 04:06

I cant get my mysql to start on os x 10.7. It is located in /usr/local/mysql/bin/mysql

I get command not found when I type mysql --version

15条回答
  •  孤城傲影
    2020-12-02 04:10

    You have to set PATH for mysql in your .bashrc file using following:

      export PATH=$PATH:/usr/local/mysql/bin
    

    But If you are using oh my zsh then you have to add path inside .zshrc file.

提交回复
热议问题