远程访问服务器Jupyter Notebook的两种方法

转载:https://www.jianshu.com/p/8fc3cd032d3c

方法1. ssh远程使用jupyter notebook
在远程服务器上,启动jupyter notebooks服务:

jupyter notebook --no-browser --port=8889

在本地终端中启动SSH:

ssh -N -f -L localhost:8888:localhost:8889 username@serverIP

其中: -N 告诉SSH没有命令要被远程执行; -f 告诉SSH在后台执行; -L 是指定port forwarding的配置,远端端口是8889,本地的端口号的8888。

注意:username@serverIP替换成服务器的对应账号。

最后打开浏览器,访问:http://localhost:8888/

方法2. 利用jupyter notebook自带的远程访问功能
官方指南在此:官方指南

生成默认配置文件

jupyter notebook --generate-config

生成访问密码(token)
终端输入ipython,设置你自己的jupyter访问密码,注意复制输出的sha1:xxxxxxxx密码串

In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:xxxxxxxxxxxxxxxxx'

修改./jupyter/jupyter_notebook_config.py中对应行如下

c.NotebookApp.ip='*'
c.NotebookApp.password = u'sha:ce...刚才复制的那个密文'
c.NotebookApp.open_browser = False
c.NotebookApp.port =8888 #可自行指定一个端口, 访问时使用该端口

在服务器上启动jupyter notebook

jupyter notebook

最后打开浏览器,访问:http://ip:8888/
方法3:
配置自己的config文件,如./jupyter/jupyter_notebook_config_backup.py

jupyter notebook --config ./jupyter/jupyter_notebook_config_backup.py

作者:ibunny
链接:https://www.jianshu.com/p/8fc3cd032d3c
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 6
    点赞
  • 27
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值