PostgreSQL Installation on Mac: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 7: Line 7:


==Initial Installation==
==Initial Installation==
 
<syntaxhighlight lang='bash'>
brew install postgresql
brew install postgresql
</syntaxhighlight>


==Update Already Installed Package==
==Update Already Installed Package==

Revision as of 21:32, 6 October 2023

Internal

Overview

Initial Installation

brew install postgresql

Update Already Installed Package

brew upgrade postgresql

Operate the Database as a Service

Start at Login

To have launchd start postgresql now and restart at login:

brew services start postgresql@14

For more details, see:

brew services

To Run without a Service

/opt/brew/opt/postgresql@14/bin/postgres -D /opt/brew/var/postgresql@14

Explore equivalency with:

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

Status

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

Stop

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