TechLead
Lesson 10 of 10
5 min read
PostgreSQL

Backup, Security & Maintenance

Protect your data and keep Postgres healthy

Backups

# Backup
pg_dump -U app_user -d app_db > backup.sql

# Restore
psql -U app_user -d app_db < backup.sql

Roles & Privileges

CREATE ROLE readonly;
GRANT CONNECT ON DATABASE app_db TO readonly;
GRANT USAGE ON SCHEMA public TO readonly;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO readonly;

Maintenance: VACUUM & ANALYZE

Postgres uses MVCC, which leaves old row versions behind. VACUUM cleans them up and ANALYZE updates planner stats.

VACUUM (ANALYZE) users;

Security Tips

  • • Use least‑privilege roles
  • • Store credentials in env vars
  • • Use SSL in production

Continue Learning