【详细】jupyter notebook远程连接服务器配置教程
程序员文章站
2022-05-27 09:44:57
...
(默认服务器上安装好了conda环境和jupyter notebook)
1. 生成默认配置文件
jupyter notebook --generate-config
2. 进入Python终端,生成秘钥
ipython
In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'argon2:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
In [3]: exit
这里要求你输入以后登录使用的密码,然后生成一个秘钥,记得保存好秘钥,以免丢失。
3. 修改配置文件
vim ~/.jupyter/jupyter_notebook_config.py
将下面的几项取消注释并修改:
c.NotebookApp.allow_remote_access = True #老版的需要此设置
c.NotebookApp.ip='*'#×允许任何ip访问
c.NotebookApp.open_browser = False
c.NotebookApp.password = 'argon2:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
c.NotebookApp.port =8888 #可自行指定一个端口, 访问时使用该端口
检测是否配置成功
在服务器开启jupyter notebook
浏览器不会自动开启
其他电脑在浏览器输入服务器ip:8888
上一篇: Focal loss PyTorch实现
推荐阅读
-
radmin 远程控制软件使用图文教程(服务器端配置与控制台连接)
-
使用远程桌面连接Windows 2003 & 2008服务器详细图文教程
-
远程连接服务器端Jupyter Notebook
-
pl/sql连接远程oracle服务器的配置教程
-
VNC远程控制软件怎么用?VNC客户端+服务器端安装及配置图文详细教程(附下载)
-
IDEA连接远程服务器Docker部署Spring Boot项目的详细教程
-
SQL Server 远程连接服务器详细配置(sp_addlinkedserver)
-
使用远程桌面连接Windows 2003 & 2008服务器详细图文教程
-
服务器(CentOS7)配置Jupyter Notebook远程访问
-
ubuntu 远程 搭建 Jupyter Notebook 服务器配置