ff3f6732e9d89a877ed20cdd6159a1b625726837
SHOW() pretty-renders units (60s -> '1min'), which broke the post-up check after a successful apply. Compare pg_settings.setting (base-unit raw values) instead - rendering-proof.
sysmig
Lightweight tool that manages host state in DB-migration (Flyway) style.
Started for a 1GB VM (ocrt-postgres), but deployable to any machine
via cloud-init.
Usage
sudo bash /opt/sysmig/sysmig up # apply all pending migrations (idempotent)
sudo bash /opt/sysmig/sysmig down # roll back the last migration
sudo bash /opt/sysmig/sysmig down all # roll back everything (reverse order)
bash /opt/sysmig/sysmig status # history + drift check (exit 1 on drift)
- Migrations:
migrations/NNN-name.sh, receivingup/down/statusas$1 - Applied history:
/var/lib/sysmig/applied- applied entries never re-run - On failure the run aborts at that step; earlier steps stay applied
statusruns each applied migration's read-only drift check (exit 1 on drift); DB checks need root, otherwise shown as?
Adding a new migration
- Create
migrations/NNN-name.sh(number higher than existing; leave gaps) - Implement
up,downandstatuscases - up/down must actually work;statusis a read-only check (exit 0 OK / 1 DRIFT / 2 unknown) - Commit & push, then on the server:
git pull && sudo bash sysmig/sysmig up
cloud-init integration
#cloud-config
runcmd:
- [ git, clone, <REPO_URL>, /opt/sysmig ]
- [ bash, /opt/sysmig/sysmig, up ]
For a private repo you need an auth strategy:
- deploy key (existing machines): register a read-only key on the repo
- fleet rollout: make the repo public, or embed a read-only token in the https URL
Current migrations
| # | name | effect |
|---|---|---|
| 001 | create-swap | 2GB swap + fstab + vm.swappiness=10 |
| 002 | disable-networkd-dispatcher | reclaim ~27MB RAM |
| 003 | purge-exim4 | reclaim ~21MB RAM (package removed) |
| 004 | purge-haveged | reclaim ~8MB RAM (package removed) |
| 005 | mount-pgdata | /dev/sdb (20G) -> /var/lib/postgresql, fstab |
| 006 | install-postgres | PG 18 via PGDG repo, cluster on the disk |
| 007 | postgres-admin-role | iwanhae OS user -> PG superuser (peer auth) |
| 008 | create-db-iwanhae | database iwanhae owned by admin role |
| 010 | tune-postgres | 1GB stability: conns=30, cache hint, timeouts, temp_file_limit |
| 011 | postgres-observability | pg_stat_statements, slow-log 500ms, io timing |
| 012 | tune-cpu | parallel caps + jit=off for shared 2 vCPU |
| 013 | install-pgbouncer | :6432 transaction pooling, localhost-only |
PgBouncer notes (013)
Serverless clients (many connections, few TPS) connect to PgBouncer
(127.0.0.1:6432, transaction mode) which opens at most ~25 real
PostgreSQL backends - matching max_connections=30 from 010 with room
for admin sessions. Remote access is deliberately not opened yet; when
it is: create an app role with a SCRAM password, export its verifier into
/etc/pgbouncer/userlist.txt (snippet in 013's header), flip
listen_addr and open the firewall.
Roadmap
015-remote-access- app role + SCRAM credentials, pgbouncerlisten_addr+ userlist.txt, pg_hba for the app CIDR, TLS, firewall
Languages
Shell
100%