Skip to content

Instantly share code, notes, and snippets.

View sandrods's full-sized avatar

Sandro Duarte sandrods

View GitHub Profile
@sandrods
sandrods / pg.sh
Last active June 22, 2020 16:58 — forked from kingbin/gist:9435292
Manually Start/Stop PostgresSQL on Mac
# Stop PostgreSQL from auto starting
sudo launchctl unload -w /Library/LaunchDaemons/com.edb.launchd.postgresql-12.plist
# Enable PostgreSQL to auto start
sudo launchctl load -w /Library/LaunchDaemons/com.edb.launchd.postgresql-12.plist
# Start postgres
sudo -u postgres /Library/PostgreSQL/12/bin/pg_ctl start -D /Library/PostgreSQL/12/data
# Stop postgres