Versions Compared

Key

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


Panel
titleThis page:

Table of Contents

This is an example of what can be achieved on Nimbus Research Cloud. The detailed configuration for various VM flavours and OS configurations might differ. Nimbus users are responsible for managing their VMs and installing tools. We believe that this step-by-step example might be helpful to run Jupyter Notebook interactively.

On Nimbus, you can run Jupyter Notebook interactively. It requires three main steps:

  1. Open the 8888 port from your Nimbus dashboard
  2. Run Jupyter Notebook with an assigned port from an Jupyter container
  3. Open Jupyter Notebook on port 8888 through your instance IP address 

Open port 8888 on Nimbus dashboard


From the Nimbus dashboard:

  1. Navigate to NetworkSecurity Groups:
  2. Click on + Create Security Group, name it 'port 8888' and then select the Create Security Group button:
  3. Select + Add Rule:
  4. Then enter the port number 8888 under 'Port', and click on the Add button:
  5. Navigate back to Compute Instances, then click on the arrow down button for the your instance, and select Edit Security Groups. Ensure that you select the port 8888 security group that you have just created, i.e. it should appear on the right hand side list of Instance Security Groups:


Run the Jupyter Notebook command


On your Nimbus instance terminal:

Tip
For automatic deployment, follow the quick steps documented here: https://github.com/PawseySC/jupyter-on-nimbus

Pull the Jupyter base notebook container (latest)

Note

The following command assumes that you have Singularity installed. All Pawsey images have Singularity pre-installed. If you need to install Singularity, see the documentation here


Note

The next step assumes that you already have the /data directory from attaching your storage volume.  You may have to set ownership of the /data directory to the user so that you can bind-mount it to the container in the next step:

>sudo chown ubuntu:ubuntu /data/

Code Block
>mkdir /data/containers
>sudo singularity pull --dir /data/containers docker://jupyter/base-notebook:latest

Run the Jupyter Notebook command as follows

Code Block
>sudo singularity>singularity exec -B /data /data/containers/base-notebook_latest.sif jupyter notebook --ip='0.0.0.0' --port=8888 --no-browser --allow-root
  • singularity exec invokes the container to run the rserver command.
  • -B is a flag used to for bind-mounting /data, which is a directory on your instance.
  • You can replace /data with a directory of your choice, as long as it has user ownership.

If you would like to run the notebook in the background and still access it while you are not logged into your instance, run it with 'nohup':

Code Block
>nohup sudo singularity exec -B /data,/usr /data/containers/base-notebook_latest.sif jupyter notebook --notebook-dir=/data --ip='0.0.0.0' --port=8888 --no-browser --allow-root &

nohup: ignoring input and appending output to 'nohup.out'


You should see an output with how to access the notebook (if run with nohup, the token will be in nohup.out). Take note of the token, and follow the next step.

Open Jupyter Notebook


  1. Open up a browser window (IMPORTANT: Firefox does not work. Use Chrome or Safari.)
  2. Go to http://your-instance-ip-address:8888
  3. Use the token that is provided from the previous step
  4. Ensure you are in the folder /data so that all your work will be saved on the /data folder of your instance
  5. Start creating a new notebook and begin your work!


Note
titleAppend module path

If you have installed modules on your instance, you would need to append your library/module path(s) to add the relevant directory(ies) on your instance, for e.g.:

Code Block
import sys
sys.path.append('/usr/lib/python3.8')
sys.path.append('/usr/local/lib/python3.8')



To check for current running Jupyter notebooks, run the following:

Code Block
>sudo>singularity singularity exec /data/containers/base-notebook_latest.sif jupyter notebook list

Currently running servers:
http://0.0.0.0:8888/?token=e2749daaa12d8d9d9029d2cb21be9f9ac8b76264ece50116 :: /data

To stop the notebook on port 8888:

Code Block
>sudo singularity>singularity exec /data/containers/base-notebook_latest.sif jupyter notebook stop 8888




Panel
titleAdvanced Topics & Troubleshooting:

Child pages (Children Display)
pageAdvanced Topics