**利用jupyter notebook自带的远程访问功能

官方指南在此:官方指南**

  1. 生成默认配置文件

    jupyter notebook --generate-config

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

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

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

    c.NotebookApp.ip=’*’
    c.NotebookApp.password = u’sha:ce…刚才复制的那个密文’
    c.NotebookApp.open_browser = False
    c.NotebookApp.port =8888 #可自行指定一个端口, 访问时使用该端口
    c.NotebookApp.allow_remote_access=True # 这一句也要加上,不然会报错:

报错:socket.gaierror: [Errno -2] Name or service not known

  1. 在服务器上启动jupyter notebook

    jupyter notebook

  2. 最后在本地打开浏览器,访问:http://ip:8888/

云服务器打开8888端口

我使用的是天翼云,操作步骤为:

  • 控制中心
  • 虚拟私有云
  • 安全组
  • 入方向规则
    然后按图片参数添加一个规则,开放8888端口
    ubuntu通过jupyter访问远程服务器_jupyter notebook