Infos:
- Used Zammad version: 6.5.2 (package)
- Used Zammad installation type: DEB package (on-prem)
- Operating system: Ubuntu 22.04.4 LTS
- Browser + version: Chrome / Edge (latest)
Expected behavior:
- Dashboard/Reports should aggregate tickets until the current date.
stats
jobs should be visible in Delayed Job queue and processed by the worker.
Actual behavior:
- Ticket overviews show correct current tickets (e.g. created today).
- Dashboard/Reports freeze at September 11, 2025.
- In Delayed Job queue, there are only
"default"
and"scheduler"
queues – nostats
jobs. - Worker logs show no stats activity.
Steps to reproduce the behavior:
- Upgrade system (Ubuntu & Zammad) – PostgreSQL was stopped during upgrade,
apt
install failed initially. - Restarted PostgreSQL and fixed installation with
apt --fix-broken install
. - Web UI showed missing assets (
application.css
not present) → fixed by:
sudo zammad run rake assets:precompile
sudo systemctl restart zammad zammad-web zammad-worker
- Zammad web UI now loads fine, tickets are working.
- Dashboard/Reports remain frozen at Sept 11.
- Tried:
sudo zammad run rails r "StatsStore.delete_all"
sudo systemctl restart zammad-worker
sudo zammad run rails r "puts Delayed::Job.group(:queue).count"
→ Output only shows {"default"=>..., "scheduler"=>...}
7. Suspected migrations not fully applied → planning to run:
cd /opt/zammad
sudo -u zammad bundle exec rake db:migrate