JupyterHub is down, but Casper is up. As a reminder, here are the steps to start a JLab session with SSH tunnels, presuming you have a conda environment setup.
1. ssh into casper
ssh -Y USERNAME@casper.ucar.edu
2. On casper, do this:
source activate base jupyter lab --no-browser --ip=$(hostname)
3. On local machine (replace "casper01" with which ever host you are on)
ssh -N -L 8888:localhost:8888 casper01.ucar.edu
4. Navigate to http://localhost:8888
in your local browser.
Reminder: It's likely that there will be more than one Jupyter Lab session on any given casper login node. So, to avoid port collision during Jupyter lab launch, you may end up getting another port other than 8888
. Replace the 8888
with the assigned port: ssh -N -L ASSIGNED_PORT:localhost:8888 casper01.ucar.edu
Revision
3. On local machine (replace "casper01" with which ever host you are on)
ssh -N -L 8888:casper01:8888 casper01.ucar.edu
Last updated: Jan 27 2025 at 22:16 UTC