Jupyter Notebooks: Difference between revisions

From RCSWiki
Jump to navigation Jump to search
Line 74: Line 74:
with the '''tunnel''' option:
with the '''tunnel''' option:
<pre>
<pre>
$ ssh username@arc.ucalgary.ca -L 8888:cn0525:8888
....
</pre>
This is a normal ssh connection with a usual text mode session, but we need this session on to keep the tunnel open.
The ssh client creates a tunnel from '''your local computer''''s port 8888 to the '''compute node cn0525''' via the ARC's cluster '''login node'''.
The trick is that your local computer does not know the '''cn0525''' name and has no way of connecting to it, but the ARC's login node does.
So, any connection made to your own computer on the port 8888 will be '''tunneled''' to the port 8888 of ARC's node '''cn0525'''.
Conveniently, this is the port the notebook is expecting the connections on.
Now start you browser on you local computer and connect to the URL from the notebook's print out:
<code>http://localhost:8888/?token=bedfe1920e97a309c583a5f2895cf1367e37a7dac416494b</code>
Note, that the name of the web server is '''localhost''', you have to edit the URL manually.


</pre>


== Windows ==  
== Windows ==  


To be determined....
To be determined....

Revision as of 22:29, 29 April 2020

General

Jupyter Hub on ARC

There is a Jupyter Hub attached to the ARC cluster. One must have an ARC account first, to connect to the hub.

Currently supports python3 only.

Connections are only available for computers that are part of the UofC campus network. To connect from outside of the UofC campus network, please use the Fort VPN client to connect to the campus network, first.

Compute Canada Jupyter Hub for UofC

Hosted by Compute Canada for UofC. Login with your UofC credentials.

Supports python2, python3, julia, and R.

Running a jupyter notebook on ARC's compute node

Start an interactive job on ARC:

$ salloc -N 1 -n 1 -c 12 --mem=0 -t 3:00:00 -p parallel
    salloc: Granted job allocation 5486616
    salloc: Waiting for resource configuration
    salloc: Nodes cn0526 are ready for job
    [drozmano@cn0526 ~]$ 

The command requested a 3 hours interactive job on the Parallel partition. The request includes all 12 CPUs and all the 23GB of RAM on the compute node. The compute node cn026, was allocated to the job.

Load a python software module you want to use and start a jupyter notebook server. Before starting the notebook we have to unset the XDG_RUNTIME_DIR variable, otherwise the notebook crashes.

$ module load python/anaconda3-2018.12
$ unset XDG_RUNTIME_DIR

$ $ jupyter notebook --no-browser --ip=0.0.0.0

[I 16:04:31.618 NotebookApp] JupyterLab extension loaded from /global/software/anaconda/anaconda3-2018.12/lib/python3.6/site-packages/jupyterlab
[I 16:04:31.618 NotebookApp] JupyterLab application directory is /global/software/anaconda/anaconda3-2018.12/share/jupyter/lab
[I 16:04:31.621 NotebookApp] Serving notebooks from local directory: /home/drozmano
[I 16:04:31.621 NotebookApp] The Jupyter Notebook is running at:
[I 16:04:31.621 NotebookApp] http://(cn0526 or 127.0.0.1):8888/?token=bedfe1920e97a309c583a5f2895cf1367e37a7dac416494b
[I 16:04:31.621 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
[C 16:04:31.673 NotebookApp] 
    
    To access the notebook, open this file in a browser:
        file:///home/drozmano/.local/share/jupyter/runtime/nbserver-25483-open.html
    Or copy and paste one of these URLs:
        http://(cn0526 or 127.0.0.1):8888/?token=bedfe1920e97a309c583a5f2895cf1367e37a7dac416494b

At this point the notebook server is up and listening for connections. You need to use your browser on your local computer (desktop or laptop) to connect to it. You have to use the URL with the token from the last line of that print out.


The problem is that the compute node name, cn0526, is an internal name to the ARC cluster. This name is not known outside of ARC, so really, you cannot connect to it as it is. So we have to setup an SSH tunnel from your local computer to that node cn0525.

Mac or Linux local computers

On you Mac or you Linux computer, open a terminal session and connect to ARC using the normal SSH client with the tunnel option:

$ ssh username@arc.ucalgary.ca -L 8888:cn0525:8888
....

This is a normal ssh connection with a usual text mode session, but we need this session on to keep the tunnel open.

The ssh client creates a tunnel from your local computer's port 8888 to the compute node cn0525 via the ARC's cluster login node. The trick is that your local computer does not know the cn0525 name and has no way of connecting to it, but the ARC's login node does. So, any connection made to your own computer on the port 8888 will be tunneled to the port 8888 of ARC's node cn0525. Conveniently, this is the port the notebook is expecting the connections on.

Now start you browser on you local computer and connect to the URL from the notebook's print out: http://localhost:8888/?token=bedfe1920e97a309c583a5f2895cf1367e37a7dac416494b

Note, that the name of the web server is localhost, you have to edit the URL manually.


Windows

To be determined....