PostgreSQL Installation on Mac: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Postgresql =Overview= brew install postgresql")
 
Line 6: Line 6:


  brew install postgresql
  brew install postgresql
=Start at Login=
To have launchd start postgresql now and restart at login:
  brew services start postgresql
=To Run without a Service=
  pg_ctl -D /usr/local/var/postgres start

Revision as of 18:52, 18 October 2018

Internal

Overview

brew install postgresql

Start at Login

To have launchd start postgresql now and restart at login:

 brew services start postgresql

To Run without a Service

  pg_ctl -D /usr/local/var/postgres start