jupyterhub单服务器多用户模式安装
官方安装文档:
https://tljh.jupyter.org/en/latest/install/custom-server.html
通过anaconda进行安装:
https://www.cnblogs.com/crxis/p/9078278.html
https://blog.csdn.net/jh0218/article/details/85104233
docker部署:
https://www.cnblogs.com/mayswind/p/12358583.html
https://blog.csdn.net/mgsky1/article/details/107198352/
使用docker的JupyterHub的引用部署
https://www.5axxw.com/wiki/content/ghad2i
http://www.hzy.org.cn/index.php/technique/78-notebook
https://github.com/TaylorHere/JupyterHubDocker
手工安装:
首先安装python3以上版本。
执行以下命令
yum install gcc
yum install openssl openssl-devel
yum install sqlite-devel
pip install jupyterhub
yum install npm nodejs-legacy
npm install -g configurable-http-proxy
pip install notebook
增加用户用于登录:
useradd hanks
passwd hanks
yum install git
pip install git+https://github.com/jupyterhub/kubespawner.git
运行以下命令生成配置文件
jupyterhub --generate-config
修改配置文件:
增加白名单及管理员用户
c.Authenticator.whitelist = {'hanks','i',''}
c.JupyterHub.admin_users = {'hanks'}
登录 serverip:8000
齐活
评论已关闭