【问题标题】:Script to run jupyter notebooks from remote server从远程服务器运行 jupyter 笔记本的脚本
【发布时间】:2017-09-27 12:31:32
【问题描述】:

我有一台运行 jupyter 笔记本的服务器(Ubuntu 服务器 16.04)和一台本地机器(Mac),我使用 google-chrome 来可视化这些笔记本。为此,我必须:

  1. 在服务器中运行 jupyter notebook:

    jupyter notebook --no-browser --port=${remotePort}

  2. 在我的本地机器上指定一个 SHH 隧道:

    ssh -f ${username}@${serverIP} -L ${localPort}:localhost:${remotePort}

为了自动化这个过程,我创建了脚本 jupyter.sh(如下所述),这样我就只在我的本地机器上运行:

bash jupyter.sh -u myUserNameInServer

它完美无缺。它能够运行前两个步骤,而且它会自动在我的网络浏览器中打开 jupyter 页面。不过,我想知道是否有更好的方法来做到这一点。我将非常感谢您的 cmets。

提前致谢。

#######################################################################
## 1. SET VARIABLES TO STABLISH THE SSH CONNECTION
# Get username from command line: bash jupyter.sh -u username
while [[ $# -gt 1 ]]
do
key="$1"
case $key in
    -u|--username)
    username="$2"
    shift # past argument
    ;;
esac
shift # past argument or value
done
# Specificy other variables to stablish the ssh connection
localPort=8890
browser="Google Chrome"
serverIP=the_IP_of_the_server
#######################################################################
# 2. RUN JUPYTER IN REMOTE SERVER
out=$(ssh -T ${username}@${serverIP} <<HERE
    # Only run jupyter if it isn't already running
    if [ \$(ps -u ${username} | grep jupyter | wc -l) -eq 0 ]
    then
        # Create a folder called jupyter, and move into it
        if [ ! -d jupyter ]; then mkdir jupyter; fi
        cd jupyter
        # Create a script to run jupyter
        echo "jupyter notebook --no-browser --NotebookApp.token=${username}" > jupyter.sh 
        # Run jupyter in the background
        screen -S jupyter -d -m bash jupyter.sh
    fi
    # Output the remote port number. If there is more than 1, get the first one
    jupyter notebook list | grep localhost | awk '{split(\$0,a,"localhost:");split(a[2],b,"/"); print b[1]}' | head -n1
HERE
)

#######################################################################
# 3. SET SSH TUNNEL
# Pass the remote port to a variable in the local machine
remotePort=$(echo $out | awk '{print $NF}') 
# Start listening in local port 8890 if that port isn't already in use
# num equal 1 if port number is already in use, 0 otherwise
num=$(netstat -lnt | awk 'BEGIN{x=0} ($6 == "LISTEN" && $4 ~ "8890$"){x=1}END{print x}')
if [ $num -eq 0 ]
then
    ssh -f ${username}@${serverIP} -L ${localPort}:localhost:${remotePort} -N
fi
#
# Open jupyter in browser
open -a "${browser}" http://localhost:${localPort}/tree?token=${username} &

【问题讨论】:

    标签: ubuntu jupyter-notebook


    【解决方案1】:

    您可以使用默认情况下未激活的“jupyter 配置文件”,因此需要先执行此命令(在您的服务器上):

    jupyter notebook --generate-config
    

    然后在“/.jupyter”文件夹中生成的“jupyter_notebook_config.py”中: 取消注释该行并更改值。

    通过这种方式,您可以调整配置,例如密码而不是令牌、默认目录、端口等 .. 随心所欲地进行可能是在脚本中执行一些“jupyter 配置”然后保留一切的正确方法别的。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2018-09-23
      • 2020-11-06
      • 1970-01-01
      • 1970-01-01
      • 2018-02-26
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多