Daehyun
11/10/2018 - 11:24 AM

start-jupyter.sh

#!/bin/sh
port=17777
host=host
umask 0002
jupyter lab \
        --NotebookApp.notebook_dir='.' \
        --NotebookApp.open_browser=False \
        --NotebookApp.ip='*' \
        --NotebookApp.port=$port \
        --NotebookApp.token='' \
        --NotebookApp.password='' &
ssh -nNT -R $port:localhost:$port $host