You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, Postgresql installed through homebrew uses the same user account which you install postgresql with in homebrew (e.g. waynebot). This is fine for the development environment, but shouldn't be used in production.
Launch Postgresql
I typically don't have Postgresql launch on startup as it takes system resources I don't always want to yield for that convenience. Instead of running the pg_ctl, I tend to run postgresql when I need it with the following:
$ postgres -D /usr/local/var/postgres
Create a backup
The Postgresql backups operate on your primary database (at the DATABASE_URL config var location). To start a backup, execute the capture task in the heroku toolkit.