...
To connect to the SCU - BRB cluster, you must be connected to the WCM VPN service
Configure Local SSH Config File
Configure your ~/.ssh/config file on your local workstation to properly connect to the internal node that will run your Jupyter Notebook:
Replace MY_CWID, with your CWID:
Code Block |
---|
Host scu-node*
user MY_CWID
ProxyCommand ssh -W %h:%p scu-login02
Host scu-login02
Hostname scu-login02.med.cornell.edu
user MY_CWID
ServerAliveInterval 60
TCPKeepAlive yes |
Reserve session on node
Jupyter-notebook can be installed from within a node. To reserve an interactive session on a node, the following commands can be run:
...
Connecting to Jupyter Notebook
Prerequisite
Configure Local SSH Config File
Configure your ~/.ssh/config file on your local workstation to properly connect to the internal node that will run your Jupyter Notebook:
...