在 OS X 中使用 XAMPP 时如何访问 mysql 命令行工具?

发布于 2024-09-11 23:59:04 字数 91 浏览 2 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

谜泪 2024-09-18 23:59:04

XAMPP 安装在 Mac OS X 中的以下目录中:

/Applications/XAMPP/

您可以查看该目录中的内容并运行 mysql 命令行工具,提供其完整路径:

$ /Applications/XAMPP/xamppfiles/bin/mysql

如果需要,您可以修改您的 PATH 环境变量包含 XAMPP 二进制文件,您无需始终指定整个路径。

XAMPP is installed in Mac OS X in the following directory:

/Applications/XAMPP/

You can look what's inside that directory and run mysql command line tool providing the full path to it:

$ /Applications/XAMPP/xamppfiles/bin/mysql

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.

污味仙女 2024-09-18 23:59:04
  1. 在 Mac 中打开您的 .profile 文件。这可以通过进入终端并键入

    来完成

    pico ~/.profile
    
  2. 将以下行添加到您的 ./profile 文件中来完成。替换您安装 Xampp 的路径,但是默认情况下这是路径并且应该可以工作:

    导出 PATH=/opt/local/bin:/opt/local/sbin:/Applications/xampp/xamppfiles/bin:$PATH
    
  3. 打开一个新的终端窗口(建议退出所有终端窗口,然后重新打开)并键入:

    <前><代码>mysql

仅此而已,这并不容易!

  1. Open your .profile file in Mac. This can be done by entering the terminal and typing

    pico ~/.profile
    
  2. 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:

    export PATH=/opt/local/bin:/opt/local/sbin:/Applications/xampp/xamppfiles/bin:$PATH
    
  3. Open a new terminal window (Recommendation is to quit all terminal windows and then reopen) and type:

    mysql
    

That is all, isn't easy!!

时光暖心i 2024-09-18 23:59:04

打开终端并按照以下步骤将 mysql 添加到您的 mac 环境变量

第 1 步:

sudo nano ~/.bash_profile

第 2 步:

export PATH=/opt/local/bin:/opt/local/sbin:/Applications/xampp/xamppfiles/bin:$PATH

通过 control+x 然后 y 保存并按回车键。就是这样!!现在关闭终端并重新打开,

mysql --version

这将告诉您正在使用 xampp 的 MySQL 版本

Open terminal and Follow this bellow step to add mysql to your mac environmental variable

step 1:

sudo nano ~/.bash_profile

step 2:

export PATH=/opt/local/bin:/opt/local/sbin:/Applications/xampp/xamppfiles/bin:$PATH

save it by control+x and then y and hit return. That's it!! now close the terminal and reopen

mysql --version

this will tell you which MySQL version you are using with xampp

离线来电— 2024-09-18 23:59:04

在使用mysql命令之前,请确保首先通过运行启动服务器

$ mysql.server start

然后您将能够使用命令mysqladminmysql

要关闭、运行

$ mysql.server stop

和重新启动,只需使用

$ mysql.server restart

非常直观的方法。

Before using the mysql command, make sure that you start up the server first by running

$ mysql.server start

Then you will be able to use the commands mysqladmin and mysql.

To shut it down, run

$ mysql.server stop

and to restart just use

$ mysql.server restart

Very intuitive.

苍暮颜 2024-09-18 23:59:04

由于我无法对巴勃罗·圣克鲁斯接受的答案发表评论 - 这里有一些附加信息。如果您要修改 PATH 环境变量以包含 XAMPP 二进制文件,请确保添加

/Applications/XAMPP/xamppfiles/bin

而不是

/Applications/XAMPP/xamppfiles/bin/mysql

添加到 /etc/paths 文件中。为此,请运行命令

sudo nano /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

/Applications/XAMPP/xamppfiles/bin

and not

/Applications/XAMPP/xamppfiles/bin/mysql

to the /etc/paths file. To do this run the command

sudo nano /etc/paths

then add the path to the file. Save using Ctrl+O and exit using Ctrl+X. Quit terminal and open again.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文