Owens OnDemand Mate Environment Loading Perpetually

When loading an OnDemand session of Owens in the Mate environment, the desktop is blank with the cursor stuck in the loading animations (image attached). It seems to work fine in the Xfce environment.

You should email oschelp@osc.edu and we can help you out there through our ticketing system. These forums are more about the open source Open OnDemand project and less about OSC help tickets specifically.

That said - I can’t replicate so I imagine we’ll have to look at your environment. Likely it’s something to do with python conda installations. In any case, they’ll also direct it to me, so I can take a look at it there.

1 Like

If anyone sees this in the future, we needed override the before_script to set XDG_RUNTIME_DIR.

---
batch_connect:
  before_script: |
    # Export the module function if it exists
    [[ $(type -t module) == "function"  ]] && export -f module

    # MATE acts strange in Slurm and doesn't like /var/run/$(id -u)
    export XDG_RUNTIME_DIR="$TMPDIR/xdg_runtime"
1 Like