Pironman V2 auto-start at boot not working

The pironman5 service seemed to have hung, the dashboard was unresponsive.

Is there a bug which is actively being worked to develop a fix?

But there is the work-around solution to dashboard missing: See sunfounder forum community solution

sudo service pironman5 stop
rm -rf /var/lib/influxdb/data/pironman5
rm -rf /var/lib/influxdb/wal/pironman5

influx
USE pironman5;
CREATE RETENTION POLICY “7d” ON “pironman5” DURATION 7d REPLICATION 1 DEFAULT;
exit

sudo nano /opt/pironman5/venv/lib/python3./site-packages/pironman5/config.json
→ edit file to change “data_interval”: value from 1 to 5 or 10
→ Ctrl-X and Y to save change

cat /opt/pironman5/venv/lib/python3./site-packages/pironman5/config.json

sudo systemctl restart influxdb
sudo systemctl restart pironman5
sudo pironman5 -c

Recommended Values:
data_interval = 1: Default (writes to InfluxDB every second) - High resource usage
data_interval = 5: Good balance - reduces writes by 80%
data_interval = 10: Recommended for resource savings - reduces writes by 90%
data_interval = 60: Minimal resource usage - only writes once per minute