PostgreSQL Installation on Mac: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 20: | Line 20: | ||
=To Run without a Service= | =To Run without a Service= | ||
<syntaxhighlight lang='bash'> | |||
/opt/brew/opt/postgresql@14/bin/postgres -D /opt/brew/var/postgresql@14 | |||
</syntaxhighlight> | |||
<font color=darkkhaki>Explore equivalency with: | |||
<syntaxhighlight lang='bash'> | |||
pg_ctl -D /usr/local/var/postgres start | |||
</syntaxhighlight> | |||
==Status== | ==Status== |
Revision as of 20:57, 6 October 2023
Internal
Overview
Initial Installation
brew install postgresql
Update Already Installed Package
brew upgrade postgresql
Start at Login
To have launchd start postgresql now and restart at login:
brew services start postgresql
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