这篇文章给大家介绍JupyterHub中如何与OpenLDAP服务集成。,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
成都创新互联公司主要从事网站建设、成都网站设计、网页设计、企业做网站、公司建网站等业务。立足成都服务邵武,10余年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18982081108
1.文档编写目的
JupyterHub的用户默认是基于OS系统用户,对于用户的管理和维护都需要在服务器上进行操作不便于管理。小编主要介绍在JupyterHub中如何与OpenLDAP服务集成。
测试环境
1.CM5.15.0和CDH版本5.14.2
2.JupyterHub版本为0.9.2
3.Python版本为3.6.5
前置条件
1.JupyterHub已部署成功
2.JupyterHub与OpenLDAP集成
在JupyterHub中默认只支持操作系统PAM默认的认证方式,如果需要JupyterHub支持OpenLDAP认证,则需要安装OpenLDAP认证的插件,插件地址:https://github.com/jupyterhub/ldapauthenticator
1.在Python3环境中安装jupyterhub-ldapauthenticator包,命令如下:
[root@cdh03 ~]# /opt/cloudera/anaconda3/bin/pip install jupyterhub-ldapauthenticator
(可左右滑动)
安装完成后验证是否安装成功
[root@cdh03 ~]# /opt/cloudera/anaconda3/bin/pip show jupyterhub-ldapauthenticator
(可左右滑动)
2.修改/etc/jupyterhub/jupyterhub_config.py文件,增加OpenLDAP配置,在文件默认增加内容如下:
#指定JupyterHub认证类型
c.JupyterHub.authenticator_class = 'ldapauthenticator.LDAPAuthenticator'
#OpenLDAP服务地址
c.LDAPAuthenticator.server_address = 'ldap://cdh01.fayson.com'
#访问用户和组的DN
c.LDAPAuthenticator.bind_dn_template = [
"uid={username},ou=People,dc=fayson,dc=com",
"uid={username},ou=Group,dc=fayson,dc=com"
]
(可左右滑动)
3.启动Jupyterhub服务
[root@cdh03 jupyterhub]# /opt/cloudera/anaconda3/bin/jupyterhub -f /etc/jupyterhub/jupyterhub_config.py --debug
(可左右滑动)
如上显示启动成功,在启动命令后添加--debug参数可以显示DEBUG日志,-f指定JupyterHub启动加载的配置文件。
3.集成验证
1.在OpenLDAP上创建一个testldap测试用户
2.在浏览器输入http://cdh03.fayson.com:8000访问JupyterHub,使用testldap用户登录
登录成功
打开一个Notebook,并运行一段测试的pyspark代码
查看Yarn上的作业
4.总结
1.JupyterHub与OpenLDAP集成需要安装jupyterhub-ldapauthenticator插件。
2.可以通过配置Group限制访问JupyterHub的用户组。
关于JupyterHub中如何与OpenLDAP服务集成。就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
本文标题:JupyterHub中如何与OpenLDAP服务集成。
网站网址:http://scgulin.cn/article/gcopeg.html