2021-05-12 brew services command
brew services list
brew services でbrew経由で入っている service を一覧する。
$ brew services list
Name Status User Plist
mysql stopped
postgresql error toshimaru /Users/toshimaru/Library/LaunchAgents/homebrew.mxcl.postgresql.plist
redis stopped
brew services stop {service}
postgresqlが自動起動設定されていて、起動失敗しているので、stopする。
$ brew services stop postgresql
Stopping `postgresql`... (might take a while)
==> Successfully stopped `postgresql` (label: homebrew.mxcl.postgr
$ brew services list
Name Status User Plist
mysql stopped
postgresql stopped
redis stopped