RS-DAT / JupyterDaskOnSLURM

Apache License 2.0
16 stars 3 forks source link

Simultaneous JupyterDask instances on Spider #6

Closed fnattino closed 2 years ago

fnattino commented 2 years ago

How to handle this?

fnattino commented 2 years ago

To solve this we could follow the Pangeo HPC guide, where they select a random port on the server side:

In the script below, we choose a random port on the server (to reduce the chance of conflict with another user) ..

JPORT=$(shuf -i 8400-9400 -n 1)
jupyter lab --no-browser --ip=`hostname` --port=$JPORT