start postgres code example

Example 1: how to start psql in linux

sudo service postgresql start
# To start the postgresql service

Example 2: start postgres server

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

Example 3: start postgres server

brew services start postgresql

Example 4: run postgres locally

$ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start

Example 5: start postgres server

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

Example 6: start postgres server

brew services stop postgresql

Tags:

Misc Example