在CentOS7服务器端启动jupyter notebook服务,在windows端使用jupyter notebook,服务器充当后台计算云端
简化描述
CentOS7服务器端
jupyter notebook --generate-config
vim /home/jiangshan/.jupyter/jupyter_notebook_config.py
【 /c.NotebookApp.allow_password_change 并按Enetr c.NotebookApp.allow_password_change=False 【去掉注释】】
jupyter notebook password
vim /home/jiangshan/.jupyter/jupyter_notebook_config.json
记录密码
vim /home/jiangshan/.jupyter/jupyter_notebook_config.py
命令模式下输入查找c.NotebookApp.password: /c.NotebookApp.password 并按Enetr
启动
jupyter notebook
也可以指定工作目录
jupyter notebook dir_path
------------------------------------------------------------------------------------------------------------------
在Windows端
dos或anaconda自带的Prompt终端 输入:
ssh -L 8888:127.0.0.1:8888 jiangshan@192.168.1.191
【第一个8888为windows端端口,第二个8888服务器端端口】
浏览器:
http://127.0.0.1:8888