未安装公式“mysql”

ajsxfq5m  于 2021-06-20  发布在  Mysql
关注(0)|答案(1)|浏览(802)

我正在尝试使用 brew services start mysql 按照网站说明,但它给了我一个错误:

  1. Formula `mysql` is not installed.

我已经在xampp服务器上进行了完全卸载。
终端:

  1. Dylans-Macbook:~ dylandude$ brew install mysql@5.7
  2. Updating Homebrew...
  3. ==> Auto-updated Homebrew!
  4. Updated 1 tap (homebrew/core).
  5. ==> Updated Formulae
  6. ansible jpeg-turbo phplint
  7. ccrypt mapcrafter skinny
  8. dxpy mikutter
  9. jenkins-job-builder pgcli
  10. Warning: mysql@5.7 5.7.23 is already installed and up-to-date
  11. To reinstall 5.7.23, run `brew reinstall mysql@5.7`
  12. Dylans-Macbook:~ dylandude$ brew services start mysql
  13. Error: Formula `mysql` is not installed.
pvcm50d1

pvcm50d11#

您已安装mysql版本5.7,其中包含:

  1. brew install mysql@5.7

因此,您必须以以下方式启动服务:

  1. brew services start mysql@5.7

相关问题