在 OS X 中使用 XAMPP 时如何访问 mysql 命令行工具?
我在 OS X 中安装了 XAMPP 的普通版本。如何访问 mysql 命令行工具?我尝试在命令行中输入“mysql”,但它返回“-bash:mysql:找不到命令”。
I've got a vanilla install of XAMPP in OS X. How can I access the mysql command line tool? I've tried typing "mysql" at the command line, and it spits back "-bash: mysql: command not found".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
XAMPP 安装在 Mac OS X 中的以下目录中:
您可以查看该目录中的内容并运行 mysql 命令行工具,提供其完整路径:
如果需要,您可以修改您的 PATH 环境变量包含 XAMPP 二进制文件,您无需始终指定整个路径。
XAMPP is installed in Mac OS X in the following directory:
You can look what's inside that directory and run mysql command line tool providing the full path to it:
If you need, you can modify your PATH environment variable to include XAMPP binaries and you won't need to specify the whole path all the time.
在 Mac 中打开您的 .profile 文件。这可以通过进入终端并键入
来完成
将以下行添加到您的 ./profile 文件中来完成。替换您安装 Xampp 的路径,但是默认情况下这是路径并且应该可以工作:
打开一个新的终端窗口(建议退出所有终端窗口,然后重新打开)并键入:
<前><代码>mysql
仅此而已,这并不容易!
Open your .profile file in Mac. This can be done by entering the terminal and typing
Add the following line to your ./profile file. Replace the path where you installed Xampp, however by default this is the route and should work:
Open a new terminal window (Recommendation is to quit all terminal windows and then reopen) and type:
That is all, isn't easy!!
打开终端并按照以下步骤将 mysql 添加到您的 mac 环境变量
第 1 步:
第 2 步:
通过 control+x 然后 y 保存并按回车键。就是这样!!现在关闭终端并重新打开,
这将告诉您正在使用 xampp 的 MySQL 版本
Open terminal and Follow this bellow step to add mysql to your mac environmental variable
step 1:
step 2:
save it by control+x and then y and hit return. That's it!! now close the terminal and reopen
this will tell you which MySQL version you are using with xampp
在使用
mysql
命令之前,请确保首先通过运行启动服务器然后您将能够使用命令
mysqladmin
和mysql
。要关闭、运行
和重新启动,只需使用
非常直观的方法。
Before using the
mysql
command, make sure that you start up the server first by runningThen you will be able to use the commands
mysqladmin
andmysql
.To shut it down, run
and to restart just use
Very intuitive.
由于我无法对巴勃罗·圣克鲁斯接受的答案发表评论 - 这里有一些附加信息。如果您要修改 PATH 环境变量以包含 XAMPP 二进制文件,请确保添加
而不是
添加到 /etc/paths 文件中。为此,请运行命令
,然后添加文件的路径。使用 Ctrl+O 保存并使用 Ctrl+X 退出。退出终端并再次打开。
Since I cannot comment on the accepted answer by Pablo Santa Cruz - Here's some additional info. If you're going to modify your PATH environment variable to include XAMPP binaries, make sure you add
and not
to the /etc/paths file. To do this run the command
then add the path to the file. Save using Ctrl+O and exit using Ctrl+X. Quit terminal and open again.