IT練習ノート

IT関連で調べたこと(実際は嵌ったこと)を書いています。

brewでpostgresqlの起動停止

起動

(root)MacBook-Air-2:test$ brew services start postgresql
==> Successfully started `postgresql` (label: homebrew.mxcl.postgresql)

停止

(root)MacBook-Air-2:test$ brew services stop postgresql
Stopping `postgresql`... (might take a while)
==> Successfully stopped `postgresql` (label: homebrew.mxcl.postgresql)
(root)MacBook-Air-2:eccube ogawanaoto$