使用自制软件安装MySQL是否包含Workbench和GUI(首选安装本机)?

时间:2022-09-19 07:54:27

Does installing MySQL with homebrew include MySQL workbench and GUI as if you were to run the Native installer (to be able to start and stop services)? I am trying to decide whether it is better to install using homebrew or with native.

使用自制软件安装MySQL是否包括MySQL工作台和GUI,就像运行Native安装程序一样(能够启动和停止服务)?我试图决定使用自制软件或本机安装是否更好。

2 个解决方案

#1


4  

The Homebrew install does not include Workbench. The download and install of Workbench on OSX is pretty painless (a download and copy - no installer).

Homebrew安装不包括Workbench。在OSX上下载和安装Workbench非常简单(下载和复制 - 没有安装程序)。

Here is some nice info on using Homebrew to install mysql http://blog.joefallon.net/2013/10/install-mysql-on-mac-osx-using-homebrew/

以下是使用Homebrew安装mysql的一些很好的信息http://blog.joefallon.net/2013/10/install-mysql-on-mac-osx-using-homebrew/

#2


22  

homebrew mysql does not contain mysqlworkbench. Mysqlworkbench is another recipe that it is not exactly in homebrew but in homebrew cask (manager for GUI installs).

自制软件mysql不包含mysqlworkbench。 Mysqlworkbench是另一个配方,它不完全是自制软件,而是自制的cask(GUI安装管理器)。

For GUI installs and 'other licence' installs there is a homebrew related package manager called homebrew cask.

对于GUI安装和“其他许可”安装,有一个名为homebrew cask的自制软件相关软件包管理器。

You can find the caskroom recipes from homebrew,

你可以找到自制的caskroom食谱,

$ brew search mysql
automysqlbackup
mysql ✔
mysql++
mysql-cluster
mysql-connector-c
mysql-connector-c++
mysql-sandbox
mysql-search-replace
mysqltuner              
homebrew/php/php53-mysqlnd_ms
homebrew/php/php55-mysqlnd_ms
homebrew/versions/mysql51
homebrew/versions/mysql56
Caskroom/cask/mysqlworkbench                 
homebrew/php/php54-mysqlnd_ms
homebrew/php/php56-mysqlnd_ms
homebrew/versions/mysql55
Caskroom/cask/mysql-utilities
Caskroom/cask/navicat-for-mysql 

but for install them you need to install cask.

但是要安装它们,你需要安装cask。

brew tap caskroom/cask
brew cask search mysql
brew cask install mysqlworkbench

The workbench is installed in /opt so unless the installer makes an alias to Applications you are not going to find it easily.

工作台安装在/ opt中,除非安装程序为应用程序创建别名,否则您将无法轻松找到它。

In my installation the mysqlworkbench was not aliased to /Applications, but in the workbench folder ther is a symlink to the Application folder so it is easy to create the link yourself.

在我的安装中,mysqlworkbench没有别名为/ Applications,但是在workbench文件夹中,它是Application文件夹的符号链接,因此很容易自己创建链接。

$ ll /opt/homebrew-cask/Caskroom/mysqlworkbench/6.3.6
total 224
lrwxr-xr-x  1 pmg  staff      14 31 Jan 11:55 Applications -> /Applications/
drwxr-xr-x  3 pmg  staff     102 10 Dec 14:55 MySQLWorkbench.app
-rw-r--r--@ 1 pmg  staff  107640 10 Dec 14:55 background.tiff

make the alias

制作别名

cd /opt/homebrew-cask/Caskroom/mysqlworkbench/6.3.6/
ln -s MySQLWorkbench.app Applications

You can run the application now from Apps

您现在可以从Apps运行该应用程序

#1


4  

The Homebrew install does not include Workbench. The download and install of Workbench on OSX is pretty painless (a download and copy - no installer).

Homebrew安装不包括Workbench。在OSX上下载和安装Workbench非常简单(下载和复制 - 没有安装程序)。

Here is some nice info on using Homebrew to install mysql http://blog.joefallon.net/2013/10/install-mysql-on-mac-osx-using-homebrew/

以下是使用Homebrew安装mysql的一些很好的信息http://blog.joefallon.net/2013/10/install-mysql-on-mac-osx-using-homebrew/

#2


22  

homebrew mysql does not contain mysqlworkbench. Mysqlworkbench is another recipe that it is not exactly in homebrew but in homebrew cask (manager for GUI installs).

自制软件mysql不包含mysqlworkbench。 Mysqlworkbench是另一个配方,它不完全是自制软件,而是自制的cask(GUI安装管理器)。

For GUI installs and 'other licence' installs there is a homebrew related package manager called homebrew cask.

对于GUI安装和“其他许可”安装,有一个名为homebrew cask的自制软件相关软件包管理器。

You can find the caskroom recipes from homebrew,

你可以找到自制的caskroom食谱,

$ brew search mysql
automysqlbackup
mysql ✔
mysql++
mysql-cluster
mysql-connector-c
mysql-connector-c++
mysql-sandbox
mysql-search-replace
mysqltuner              
homebrew/php/php53-mysqlnd_ms
homebrew/php/php55-mysqlnd_ms
homebrew/versions/mysql51
homebrew/versions/mysql56
Caskroom/cask/mysqlworkbench                 
homebrew/php/php54-mysqlnd_ms
homebrew/php/php56-mysqlnd_ms
homebrew/versions/mysql55
Caskroom/cask/mysql-utilities
Caskroom/cask/navicat-for-mysql 

but for install them you need to install cask.

但是要安装它们,你需要安装cask。

brew tap caskroom/cask
brew cask search mysql
brew cask install mysqlworkbench

The workbench is installed in /opt so unless the installer makes an alias to Applications you are not going to find it easily.

工作台安装在/ opt中,除非安装程序为应用程序创建别名,否则您将无法轻松找到它。

In my installation the mysqlworkbench was not aliased to /Applications, but in the workbench folder ther is a symlink to the Application folder so it is easy to create the link yourself.

在我的安装中,mysqlworkbench没有别名为/ Applications,但是在workbench文件夹中,它是Application文件夹的符号链接,因此很容易自己创建链接。

$ ll /opt/homebrew-cask/Caskroom/mysqlworkbench/6.3.6
total 224
lrwxr-xr-x  1 pmg  staff      14 31 Jan 11:55 Applications -> /Applications/
drwxr-xr-x  3 pmg  staff     102 10 Dec 14:55 MySQLWorkbench.app
-rw-r--r--@ 1 pmg  staff  107640 10 Dec 14:55 background.tiff

make the alias

制作别名

cd /opt/homebrew-cask/Caskroom/mysqlworkbench/6.3.6/
ln -s MySQLWorkbench.app Applications

You can run the application now from Apps

您现在可以从Apps运行该应用程序