mac start postgresql code example
Example 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
Example 2: how to open postgresql in mac
brew services start postgresqlpsql postgres
Example 3: run postgres locally
$ pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start
Example 4: install postgresql on mac
brew install postgresql
Example 5: how to open postgresql in mac
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"