Open OnDemand

Open OnDemand provides a web-based graphical interface for the Zurada HPC system. It allows you to manage files, open terminal sessions, submit Slurm jobs, and run interactive applications like Jupyter and RStudio directly in your browser—no command-line setup required.

1. Prerequisites & Access Requirements

Before logging into Open OnDemand, ensure you have:

  • An active Zurada HPC Account

  • A connection to the campus network or an active UofL GlobalProtect VPN (if accessing from off-campus)

Login Steps

  1. Open your web browser

  2. Navigate to https://web.rc.louisville.edu.

  3. Log in using your ULink User ID and Password.

Warning

If the site fails to load or gives a connection timeout, verify that your UofL VPN connection is active.

2. Dashboard Navigation Overview

Once logged in, the top navigation bar grants access to all cluster management modules:

Navigation Menu

Primary Functions

Files

Browse, view, edit, upload, download, and manage files in /home and /work.

Jobs

Access Job Composer (create scripts) and Active Jobs (monitor Slurm queue status).

Clusters

Launch a web-based SSH terminal session (>_ Zurada Shell Access).

Interactive Apps

Launch GUI environments (VS Code, Jupyter, RStudio, MATLAB).

My Interactive Sessions

View runtime status, manage connections, or terminate active app sessions.

3. Interactive Applications Guide

Interactive apps run on dedicated compute nodes allocated to your account by Slurm.

Tip

Submit reasonable walltimes and core counts. Smaller resource requests schedule significantly faster in the Slurm queue than large requests.

4. Using Custom Conda Environments

To use custom Python environments inside VS Code or Jupyter:

  1. Open Clusters > >_ Zurada Shell Access and create your environment:

module load conda
conda create -n my_env python=3.10 ipykernel -y
conda activate my_env
python -m ipykernel install --user --name my_env --display-name "Python (my_env)"
  1. When launching Jupyter or VS Code in Open OnDemand, your new environment kernel “Python (my_env)” will appear automatically in the environment selector dropdown.

5. Slurm Job Management

Job Composer (Batch Scripts)

If you do not need a GUI desktop and want to run non-interactive batch scripts:

  1. Navigate to Jobs > Job Composer.

  2. Click New Job > From Specified Template or From Default Template.

  3. Edit your Slurm batch script directly in the built-in editor:

#!/bin/bash
#SBATCH --job-name=demo_job
#SBATCH --output=demo_%j.out
#SBATCH --nodes=1
#SBATCH --ntasks=1
#SBATCH --cpus-per-task=4
#SBATCH --time=01:00:00
#SBATCH --mem=8G

module load matlab
matlab -nodisplay -nosplash -r "my_script; exit;"
  1. Click Submit to dispatch the script to the Slurm queue.

Active Jobs (Queue Monitor)

  1. Go to Jobs > Active Jobs.

  2. View all queued, running, or held jobs across the cluster.

  3. Filter by User ($USER) to monitor your personal jobs or inspect job IDs, start times, and allocated nodes.

6. File Management & Terminal Access

Browser File Explorer

  • Navigate to Files > Home Directory or Scratch Directory.

  • Drag and drop files from your computer to upload.

  • Select text scripts or configuration files and click Edit to open the built-in web code editor.

In-Browser SSH Terminal

  1. Navigate to Clusters > >_ Zurada Shell Access.

  2. An SSH shell session opens directly on the Zurada login node. You will need to perform a DUO push verification

# Monitor your submitted jobs
squeue -u $USER

# Check scratch storage usage
df -h /scratch/$USER

7. Troubleshooting & FAQs

Q: My session stays in the “Queued” state for a long time.
  • Cause: Requested CPU, memory, or walltime limits exceed current free node capacity.

  • Fix: Go to My Interactive Sessions, click Delete, and resubmit with fewer cores, less RAM, or shorter walltime.

Q: App crashed or disconnected automatically.
  • Cause: Job exceeded maximum allocated RAM (Out Of Memory) or hit the requested Walltime limit.

  • Fix: Re-launch the session with increased memory or longer runtime.

Q: “Bad Gateway” or “404 Not Found” error upon launch.
  • Cause: The compute node instance died unexpectedly or did not start the web service in time.

  • Fix: Delete the failed session under My Interactive Sessions, refresh your browser, and launch a fresh session.

Note

  • These guides assume you have a valid account and have requested access to Zurada.

  • Replace any example hostnames or project names with values provided by Research Computing.