pgAdmin 4
URL: http://109.199.120.120:5080 Credentials: admin@coderz.dev / coderz123 Version: pgAdmin 4 (latest) pgAdmin is the official web-based administration UI for PostgreSQL. It provides a visual interface to manage databases, tables, users, and run SQL queries — no command-line knowledge required.Pre-Configured Database Connections
pgAdmin is pre-loaded with both database servers viaservers.json:
| Server Name | Host | Port | Database |
|---|---|---|---|
| coderz-db | coderz-db | 5432 | coderapi |
| postgres | coderz-db | 5432 | postgres |
What You Can Do in pgAdmin
Browse data:- Expand server → Databases → Schema → Tables
- Right-click any table → View/Edit Data → All Rows
- Select a database → Tools → Query Tool
- Type and execute any SQL
- Dashboard → Server Activity (active queries, locks, connections)
- Statistics tab on any table (row count, size, bloat)
- Login/Group Roles → Create new users
- Set permissions per database
- Right-click database → Backup → Select format (custom, SQL)
- Right-click database → Restore
Useful Built-In Queries
Tips
- pgAdmin runs in desktop mode (no multi-user login) — anyone who accesses port 5080 is automatically logged in as admin
- The interface auto-saves query history in the Query Tool
- Use Explain Analyze (Shift+F7) to see query execution plans and optimize slow queries