Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Get a S3DF account
  2. Wait for approval
  3. Ssh into s3df login node with port forwarding (5555 can be changed to any preferred port): note: make sure this ssh is from your local machine as we need to have port 5555 open on the connection all the way from your local machine to jupyter lab on s3df. 

    Code Block
     ssh -L 5555:localhost:5555 <SLAC UNIX USERNAME>@s3dflogin.slac.stanford.edu

    if connecting from Windows' command line (cmd), specify the following:

    Code Block
     ssh -m hmac-sha2-512 -L 5555:localhost:5555 <SLAC UNIX USERNAME>@s3dflogin.slac.stanford.edu
  4. Connect to Iana :

    Code Block
     ssh -L 5555:localhost:5555 iana
  5. Activate conda env:  If conda is not installed see instructions here

    Code Block
    conda activate <CONDA ENV>
  6. ** do only first time ** install jupyter lab if not installed: 

    Code Block
    conda install jupyterlab
  7. Run jupyter and click on the link to open in your browser:

...