Skip to content

Troubleshooting


Hub offline / not connecting to cloud

Symptom: Dashboard shows hub as offline. Cloud Link tab shows "not linked to cloud".

Check 1 — Is the Pi powered and running?

Try opening http://chillcheck.local from a device on the same network. If the page loads, the Pi is running but may have lost its credentials.

If the page does not load:

  • Check the Pi has power (green LED should be on)
  • Check ethernet cable is firmly connected
  • Wait 90 seconds after powering on — boot takes time

Check 2 — Check service status

SSH into the Pi and run:

sudo systemctl status chillcheck-subscriber

If it shows failed:

sudo journalctl -u chillcheck-subscriber -n 50

Look for error messages. Common causes:

  • SUPABASE_URL not set — the Pi has lost its credentials; re-link via the hub UI
  • Connection refused — network issue; check internet connectivity

Check 3 — Check internet connectivity

curl -s https://app.chillcheck.online/api/health

Should return {"status":"ok"}. If it hangs or returns an error, the Pi cannot reach the internet.

ping 8.8.8.8

If this works but the curl doesn't, it's a DNS issue:

echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf

Check 4 — Re-link the hub

If the Pi has network access but is still showing offline, the credentials may be corrupted. Generate a new pairing code from Settings → Devices and re-link via the Cloud Link tab.


Sensor not appearing after pairing

Symptom: You put the sensor into pairing mode but it never appears in the hub UI.

Check 1 — Is the sensor close enough?

During initial pairing, bring the sensor within 1–2 metres of the Pi. ZigBee range is reduced when the sensor is not yet part of the mesh network.

Check 2 — Is the sensor in pairing mode?

The LED should flash rapidly (triple-blink pattern) when in pairing mode. If the LED is not flashing, press and hold the reset button for the full 5 seconds.

Check 3 — Is the pairing window open?

The hub only accepts new sensors for 120 seconds after you click + Pair sensor. If the window has expired, start the pairing process again.

Check 4 — Check Zigbee2MQTT logs

sudo journalctl -u zigbee2mqtt -n 50 -f

You should see activity when a sensor tries to join. If you see Not allowing new devices to join, the pairing window is not open — try starting pairing from the hub UI again.

Check 5 — Battery

The sensor needs a charged CR2450 battery. If the LED does not flash at all, replace the battery.


Not receiving alerts

Symptom: A cabinet is clearly too warm/cold but no alert email or SMS arrived.

Check 1 — Is the sensor assigned?

Unassigned sensors do not trigger alerts. Check Settings → Devices in the cloud dashboard and confirm the sensor is assigned to a cabinet.

Check 2 — Check your contacts

Go to Settings → Contacts. Confirm at least one contact has a valid email address.

Check 3 — Check your spam folder

Alert emails come from alerts@chillcheck.online. Add this address to your safe senders list.

Check 4 — Are thresholds set correctly?

Go to Settings → Alert Rules. Check the target temperature and offsets for the cabinet in question. If the threshold is set very high (e.g. critical at +20°C), alerts won't fire until temperatures are dangerously high.

Check 5 — Check active alerts in the dashboard

Go to the Alerts page. If an alert is shown as active but no notification was sent, check the subscriber logs:

sudo journalctl -u chillcheck-subscriber -n 100 | grep alert

Hub shows "Update available" but update fails

Symptom: Clicking Install starts the update but it rolls back or the page never reloads.

Check services after update:

sudo journalctl -u chillcheck-subscriber -n 30
sudo journalctl -u chillcheck-local-ui -n 30

Look for errors in the logs. Most update failures are caused by network issues during the download — try again when connectivity is stable.

Check update log:

cat /var/log/chillcheck/update.log

The last few lines will show whether the update succeeded, rolled back, or failed at a specific step.


4G failover setup

If your site's broadband is unreliable, a 4G USB dongle provides a backup uplink.

Hardware required:

  • Huawei E3372 or similar 4G USB stick (plug-and-play on Pi OS)
  • A data SIM (1 GB/month is ample)

Setup:

  1. Insert the dongle into a Pi USB port
  2. SSH into the Pi
  3. Check the dongle is detected:

    ip link show
    
    Look for an interface named eth1 or usb0

  4. Install network-manager if not already present:

    sudo apt install -y network-manager
    

  5. Configure the dongle as a secondary default route:

    sudo nmcli connection add type ethernet ifname usb0 con-name 4g-failover
    sudo nmcli connection modify 4g-failover ipv4.route-metric 200
    sudo nmcli connection up 4g-failover
    

Setting a higher route metric means the Pi prefers ethernet (metric 100) but falls over to 4G automatically if ethernet goes down.

  1. Verify failover by unplugging ethernet and checking connectivity:
    curl -s https://app.chillcheck.online/api/health
    

SD card corruption

Symptom: Pi fails to boot after a power cut.

This is rare but can happen if the Pi loses power while writing to the SD card. Prevention:

  • Use a UPS to ensure clean shutdowns during power cuts
  • Use a high-endurance SD card (Samsung Endurance or SanDisk Endurance)

Recovery:

If the Pi will not boot, re-flash the SD card (Flash the SD card) and run the setup script again. Your data (readings, alerts) is safe in the cloud — only the Pi configuration is lost.

After re-flashing, re-link the hub with a new pairing code from Settings → Devices.


Still stuck?

Contact support at hello@chillcheck.online with:

  • Your organisation name
  • The hub device ID (shown in Settings → Devices in the dashboard)
  • The output of cat /var/log/chillcheck/update.log and sudo journalctl -u chillcheck-subscriber -n 100