我正在尝试按照网站的说明使用brew services start mysql安装mysql,但它给出了一个错误:
Formula `mysql` is not installed.我已经在我的XAMPP服务器上进行了完全卸载。
终端:
Dylans-Macbook:~ dylandude$ brew install mysql@5.7
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: mysql@5.7 5.7.23 is already installed and up-to-date
To reinstall 5.7.23, run `brew reinstall mysql@5.7`
Dylans-Macbook:~ dylandude$ brew services start mysql
Error: Formula `mysql` is not installed.发布于 2018-07-30 03:56:02
您已经安装了5.7版的MySQL,其中包含:
brew install mysql@5.7因此,您必须使用以下命令启动该服务:
brew services start mysql@5.7https://stackoverflow.com/questions/51573145
复制相似问题