jupyterhub

使用 JupyterHub,您可以创建一个多用户 Hub,它可以生成、管理和代理单用户 Jupyter notebook 服务器的多个实例

JupyterHub 包含三个组件 [1]  :
  1. 一个多用户的 Hub
  2. 一个可配置的 http代理
  3. 多个单用户JupyterNotebook服务器

Four subsystems make up JupyterHub:

  • Hub (tornado (python的web服务器框架) process) that is the heart of JupyterHub

  • configurable http proxy (node-http-proxy) that receives the requests from the client’s browser(接受客户端的请求)

  • multiple single-user Jupyter notebook servers (Python/IPython/tornado) that are monitored by Spawners

  • an authentication class that manages how users can access the system(用户可以如何访问系统)

新战场:https://blog.csdn.net/Stephen___Qin
原文地址:https://www.cnblogs.com/Stephen-Qin/p/11094544.html