Install postgresql
The postgresql package contains the PostgreSQL utilities: psql, pg_dump
On macOS
brew install postgresql
Install pgAdmin
pgAdmin is a browser based database management tool for PosgtreSQL databases.
Download
- Download the installer from https://www.pgadmin.org/download/
Install
On macOS
- Double click the downloaded file
- Accept the license agreement
- Drag the application into the Applications folder
Start pgAdmin
On macOS
- Start the pgAdmin application from the Launchpad. The application runs in a browser window.
Install the pgcli command line utility
On macOS
brew install pgcli
Using pgcli
pgcli is a wrapper of postgresql with limited command set to enable testers and support staff to monitor PostgreSQL databases
Start pgcli with
PGPASSWORD=MY_ADMIN_PASSWORD pgcli -h MY_SERVER_URL -U MY_USERNAME -d MY_DATABASE_NAME
To see the help on the pgcli commands
\?