1、登录服务器,生成配置文件
$jupyter notebook --generate-config
此时会在~/.jupyter目录下生成一个jupyter_notebook_config.py文件
2、打开ipython,生成一个密文密码
from notebook.auth import passwd
passwd()
Enter password:
Verify password:
Out[2]: 'sha1:ce23d945972f:34769685a7ccd3d08c84a18c63968a41f1140274'
把生成的密文‘sha:ce…’复制下来
3、修改默认配置文件
vim ~/.jupyter/jupyter_notebook_config.py
修改如下:
c.NotebookApp.ip='*'
c.NotebookApp.password = u'sha:ce...刚才复制的那个密文'
c.NotebookApp.open_browser = False
c.NotebookApp.port =8888 #随便指定一个端口
4、启动jupyter notebook:
$jupyter notebook
5、远程访问
此时应该可以直接从本地浏览器直接访问http://address_of_remote:8888就可以看到jupyter的登陆界面。
6、 建立ssh通道
如果登陆失败,则有可能是服务器防火墙设置的问题,此时最简单的方法是在本地建立一个ssh通道:
在本地终端中输入ssh username@address_of_remote -L127.0.0.1:1234:127.0.0.1:8888
便可以在localhost:1234直接访问远程的jupyter了。