无法从命令行 mac 访问 mysql

can#39;t access mysql from command line mac(无法从命令行 mac 访问 mysql)

本文介绍了无法从命令行 mac 访问 mysql的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

os x 10.6 上的 mysql 位于 /usr/local/mysql/bin/mysql

mysql on os x 10.6 is located in /usr/local/mysql/bin/mysql

我在终端中输入 mysql --version 时找不到命令.这是因为套接字路径错误吗?如果是这样,我该如何解决?

I get command not found when I type mysql --version in the terminal. Is this because the socket path is wrong? if so how do I fix it?

谢谢

推荐答案

只需在终端中执行以下操作:

Just do the following in your terminal:

echo $PATH

如果给定的路径不在该字符串中,则必须像这样添加它:export PATH=$PATH:/usr/local/export PATH=$PATH:/usr/local/mysql/bin

If your given path is not in that string, you have to add it like this: export PATH=$PATH:/usr/local/ or export PATH=$PATH:/usr/local/mysql/bin

这篇关于无法从命令行 mac 访问 mysql的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:无法从命令行 mac 访问 mysql

基础教程推荐