## Summary - Add new how-to guide (`connect-to-postgres.md`) with the `psql` command using `op read` for 1Password credentials - Add "Database" section to the how-to index linking to the new guide - Link the new guide from the PostgreSQL reference card's Related section ## Test plan - [x] Verified `psql` connection works from gilbert using the documented command - [ ] Review doc formatting and content 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: https://forge.ops.eblu.me/eblume/blumeops/pulls/188
1 KiB
1 KiB
| title | modified | tags | ||
|---|---|---|---|---|
| Connect to Postgres | 2026-02-14 |
|
Connect to Postgres
How to connect to the postgresql cluster as a superuser using psql.
Prerequisites
psqlinstalled (brew install libpqon macOS)- 1Password CLI (
op) installed and signed in - Machine on the tailnet (e.g. gilbert)
Connect
PGPASSWORD=$(op read "op://blumeops/postgres/password") psql -h pg.ops.eblu.me -U eblume -d postgres
This connects as the eblume superuser. To connect to a specific database, replace postgres with the database name (e.g. miniflux, teslamate).
Useful Queries
-- List databases
\l
-- List roles
\du
-- Check cluster status (CNPG)
SELECT pg_is_in_recovery();
-- Show active connections
SELECT datname, usename, client_addr, state
FROM pg_stat_activity
WHERE state IS NOT NULL;
Related
- postgresql - Service reference
- borgmatic - Database backup
- troubleshooting - Cluster health checks