Ops
Outcome
Run day-2 operations safely: health checks, logs, backups, updates, and practical recovery steps.
1) Health and status
cara status --host 127.0.0.1 --port 18789
curl -sS http://127.0.0.1:18789/healthIf you changed bind/port in setup, use those values instead of
127.0.0.1:18789.
2) Logs and diagnosis
cara logs -n 200For deeper troubleshooting, use:
3) Backup and restore
Create a backup before major config/channel changes:
cara backup --output ./carapace-backup.tar.gzRestore from backup:
cara restore --path ./carapace-backup.tar.gz4) Update flow
Check/update the local binary:
cara updateFor pinned or reproducible installs, use the install guide:
5) First-response recovery checklist
- Confirm service health and port/bind settings.
- Capture recent logs and isolate the first failing component (provider/channel/auth).
- Re-run setup for misconfigured auth/network/channel values.
- Restore from latest known-good backup if needed.
- Open an issue with logs + exact steps if still blocked.