jupyter notebook 远程访问
参考官网文档
默认情况下,安装好 Anaconda 后打开 jupyter notebook, 访问本地
localhost:8888 即可。但是如果要访问另一台机器,比如远端服务器上的 notebook, 即默认是不支持 172.104.105.119:8888 这样的访问,需要额外配置。
设置 jupyter notebook 可远程访问的官方指南在这里,在远端服务器上执行以下操作:
生成一个 notebook 配置文件
默认情况下,配置文件 ~/.jupyter/jupyter_notebook_config.py 并不存在,需要自行创建。使用下列命令生成配置文件:
jupyter notebook --generate-config
如果是 root 用户执行上面的命令,会发生一个问题:
Running as root it not recommended. Use --allow-root to bypass.
提示信息很明显,root 用户执行时需要加上 --allow-root 选项。
jupyter notebook --generate-config --allow-config
执行成功后,会出现下面的信息:
Writing default config to: /root/.jupyter/jupyter_notebook_config.py
生成密码
自动生成
从 jupyter notebook 5.0 版本开始,提供了一个命令来设置密码:jupyter notebook password,生成的密码存储在 jupyter_notebook_config.json。
$ jupyter notebook password
Enter password: ****
Verify password: ****
[NotebookPasswordApp] Wrote hashed password to /Users/you/.jupyter/jupyter_notebook_config.json
手动生成
除了使用提供的命令,也可以通过手动安装,我是使用的手动安装,因为jupyter notebook password 出来一堆内容,没耐心看。打开 ipython 执行下面内容:
In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'sha1:cb8811e0e247:28b785569ce687f3101a14cdeef8c7d12f46a788'
sha1:67c9e60bb8b6:9ffede0825894254b2e042ea597d771089e11aed 这一串就是要在 jupyter_notebook_config.py 添加的密码
c.NotebookApp.password = u'sha1:cb8811e0e247:28b785569ce687f3101a14cdeef8c7d12f46a788'
修改配置文件
在 jupyter_notebook_config.py 中找到下面的行,取消注释并修改。
c.NotebookApp.ip='*'
c.NotebookApp.allow_root = True
c.NotebookApp.password = u'这里就是刚才生成的那个密文'
c.NotebookApp.open_browser = False
c.NotebookApp.port =8888 #可自行指定一个端口, 访问时使用该端口
以上设置完以后就可以在服务器上启动 jupyter notebook, 使用 jupyter notebook启动 。打开 IP:指定的端口, 输入密码就可以访问了。
需要注意的是不能在隐藏目录 (以 . 开头的目录)下启动 jupyter notebook, 否则无法正常访问文件。
推荐阅读
-
jupyter notebook中出现ValueError: signal only works in main thread 报错 即 长时间in[*] 解决办法
-
Mysql数据库如何开启远程访问权限?
-
操作mysql第一次访问速度慢(远程)
-
SSH设置别名访问远程服务器详细介绍
-
PHP中通过fopen()函数访问远程文件示例
-
Linux 安装JDK Tomcat MySQL的教程(使用Mac远程访问)
-
anaconda 环境新建/删除/拷贝 jupyter notebook上使用python虚拟环境 TensorFlow
-
非线性函数的最小二乘拟合——兼论Jupyter notebook中使用公式 [原创]
-
怎么使用户能访问ftp,但不能远程登录
-
Sql Server 2005的1433端口打开局域网访问和进行远程连接