我使用brew安装了mysql:
brew install mysql
安装顺利,没有任何错误。
当我这样做时:
brew services
我明白了:
mysql none
mysql好像没有启动。
那么如何让它运行呢?
brew services start mysql
brew services list
您应该看到类似以下内容:
Name Status User Plist
mysql started your_user_name /Users/your_user_name/Library/LaunchAgents/homebrew.mxcl.mysql.plist
mysql -u root
默认情况下,root 用户没有密码。如果您在安装或配置过程中设置了密码,则需要在此处使用:
mysql -u root -p
brew services stop mysql