Closed fnattino closed 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
How to handle this?