Skip to content

Quick Start

Try Without HPC

pip install nomad-hpc
nomad demo

This launches a dashboard at http://localhost:8050 with synthetic data.

Production Setup

1. Install

pip install nomad-hpc

2. Configure

nomad init

Follow the wizard to configure your cluster(s).

3. Collect Data

nomad collect

Leave running (or set up as systemd service).

4. View Dashboard

nomad dashboard

Open http://localhost:8050

First Commands to Try

# System status
nomad status

# Disk usage trends
nomad disk /home

# Recent jobs
nomad jobs --user $USER

# Educational analytics (if you have job data)
nomad edu explain <job_id>

Next Steps