Your ROOT_URL in app.ini is https://git.hpc.odu.edu/ but you are visiting https://git.wahab.hpc.odu.edu/wirawan0/WP-hpc-tools/src/commit/94e0aa9490db7a84c12b6101ec8047e4b6e1a93e/turing/calculations/jupyter-anaconda2 You should set ROOT_URL correctly, otherwise the web may not work correctly.
Custom HPC software & tools from Wirawan. Primarily tailored toward ODU HPC sytems.
 
 
 

22 lines
596 B

#!/bin/bash --login
#
# Run script to start Jupyter notebook process on compute node.
# This script is intended to be submitted to SLURM via sbatch.
# WARNING: I recommend setting up a password via:
#
# jupyter notebook --password
#
# before running the notebook process, as the notebook server WILL
# listen to incoming connections from ANY origin.
# (This is so that web browser on user's local computer can be
# used to connect to the notebook via SSH tunneling.)
#
# Wirawan Purwanto
# Created: 20180621
#
enable_lmod
module load anaconda2/4.3
jupyter notebook --no-browser --ip=* "$@"