- 生成配置文件
$jupyter notebook --generate-config
会返回一个存放jupyter_notebook_config.py
的路径 - 生成密码
打开ipython,创建一个密文的密码:
[root@datanode1 ~]# ipython
In [1]: from notebook.auth import passwd
In [2]: passwd()
Enter password:
Verify password:
Out[2]: 'argon2:xxxxxxxxxxxxxxxxxxxxxxx'
把生成的密文'argon2:xxxxxxxxxxxxxxxxxxxxxxx'复制下来(把引号里面的都复制了)。
- 修改默认配置文件
配置文件的路径就是第一步返回的路径,
vim /home/jun/.jupyter/jupyter_notebook_config.py
添加配置:
c.NotebookApp.ip='*'
c.NotebookApp.password = u'argon2:xxxxxxxxxxxxxxxxxxxxxxx刚才复制的那个密文'
c.NotebookApp.open_browser = False
c.NotebookApp.port =9970 #随便指定一个端口
- 本地访问远程服务器
本地浏览器输入:
服务器IP:端口号
10.181.90.190:9970
标签:password,jupyter,配置文件,访问,notebook,Jupyter,NotebookApp,config,远程
From: https://www.cnblogs.com/Guang-Jun/p/17002970.html