Backup Issues
Issue: Backup script fails with "ht_token not found"
Symptoms:
[2025-12-09 10:00:05] ERROR: ht_token value not found or is default in /opt/amd/tts/conf/configuration.yamlCause: The TTS configuration file doesn't have a valid ht_token configured.
Resolution:
- Check if the file exists:
ls -la /opt/amd/tts/conf/configuration.yaml - Check token value:
grep "ht_token:" /opt/amd/tts/conf/configuration.yaml - If missing or default value, that indicates an incomplete installation or corrupted
configuration.yamlfile. In this case, a re-install will be required.
Issue: PostgreSQL dump fails
Symptoms:
[2025-12-09 10:15:00] ERROR: Failed to create PostgreSQL dumpCause: Database connection issues or insufficient permissions.
Resolution:
- Verify PostgreSQL is running:
systemctl status postgresql - Check database exists:
sudo -u postgres psql -l | grep triage-www - Test database connection:
sudo -u postgres psql -d triage-www -c "SELECT version();" - If
triage-wwwdatabase does not exist, a re-install will be required.