远程Jupyter链接
1. # 生成配置文件
jupyter notebook --generate-config
2.进入ipython,
from notebook.auth import passwd
passwd()
#设置jupyter登录密码
输入密码后会获取sha1
3.在vim ~/.jupyter/jupyter_notebook_config.py中添加配置,并保存
c.NotebookApp.ip=‘0.0.0.0’#其中0.0.0.0代表本机上的所有IPV4地址,'*' 则意味着绑定所有接口 (ips),若报错可试这两者
c.NotebookApp.password=u'sha1:9837a753f9dc:852f7c71f4bd6158118201c35ef1f2aca877c57e' #在步骤2中获得的值
c.NotebookApp.open_browser=False
c.NotebookApp.port=8880#该服务监听的端口号
4.指定ip并且后台运行,Session断开也继续运行
nohup jupyter notebook --ip=192.168.2.2 &
5.之后在浏览器中,输入ip:端口即可