Coolblock Panel · Admin Guide

coolblock-logo-text

Panel Web - Latest Docker Tag Panel API - Latest Docker Tag Panel Proxy - Latest Docker Tag

Deploy VPS - Liquid Cloud

Getting started

  1. Install latest Ubuntu Desktop LTS.

  2. Run the bootstrap script to install or upgrade the stack:

    The script prepares the project in /home/coolblock/panel and keeps database dumps in /home/coolblock/panel/backup

    curl -fsSL https://downloads.coolblock.com/panel/install.sh | bash -s -- --tank-model <tank_model> --plc-model <plc_model> --serial-number <serial_number> --license-key <license_key>
    
  3. Login with the default credentials

    Should be changed afterwards Gear Icon -> Change Password and Gear Icon -> Change PIN

    username: admin
    password: admin123
    pin: 1234
    

Adiministration

Monitoring

The stack exposes a healthcheck endpoint at /backend/health that accepts an optional argument ?metrics=1 which will expose all services metrics for you. We highly recommend you to scrape/parse this endpoint (with zabbix/nagios etc..) in order to monitor multiple installations with ease.

Example healthcheck response with telemetry disabled:

{
  "redis": { "status": "healthy" },
  "database": {
    "influx": {
      "local": { "status": "healthy" },
      "cloud": { "status": "unhealthy" }
    },
    "mysql": { "status": "healthy" }
  },
  "panel": { "status": "healthy" },
  "internet": { "status": "healthy" },
  "latency": 85.79100000000001
}

The healthcheck endpoint should reply with http status code 200 when redis, local influxdb, mysql and panel are healthy, otherwise it responds with a 5xx status code.