Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Formula `mysql` is not installed

Tags:

mysql

homebrew

I'm trying to install mysql using brew services start mysql as per the website instructions but it gives me an error:

Formula `mysql` is not installed.

I already did a full uninstall on my XAMPP server.

Terminal:

Dylans-Macbook:~ dylandude$ brew install [email protected]
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 1 tap (homebrew/core).
==> Updated Formulae
ansible                    jpeg-turbo                 phplint
ccrypt                     mapcrafter                 skinny
dxpy                       mikutter
jenkins-job-builder        pgcli

Warning: [email protected] 5.7.23 is already installed and up-to-date
To reinstall 5.7.23, run `brew reinstall [email protected]`
Dylans-Macbook:~ dylandude$ brew services start mysql
Error: Formula `mysql` is not installed.
like image 802
capstone Avatar asked Jul 28 '18 16:07

capstone


1 Answers

You have installed the version 5.7 of MySQL with:

brew install [email protected]

So you have to start the service with:

brew services start [email protected]
like image 162
Ortomala Lokni Avatar answered Nov 18 '22 06:11

Ortomala Lokni