Answers for "start postgres automatically mac"

SQL
1

how-can-i-start-postgresql-server-on-mac-os-x

If you want to manually start and stop PostgreSQL (installed via Homebrew), the easiest way is:

brew services start postgresql

and

brew services stop postgresql

If you have a specific version, make sure to suffix the version. For example:

brew services start postgresql@10
Posted by: Guest on September-22-2020
0

postgres stop server mac

sudo -u postgres pg_ctl -D /Library/PostgreSQL/11/data stop
Posted by: Guest on June-18-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language