0.前言
本文介绍了如何搭建shibboleth,实现shibboleth ldap的sso凯发天生赢家一触即发官网的解决方案
1.什么是shibboleth
shibboleth是一个基于标准的,实现组织内部或跨组织的网页单点登录的开源软件包。它允许站点为处于私有保护方式下的受保护的在线资源做出被通知的认证决定。
shibboleth软件工具广泛使用联合的身份标准,主要是oasis安全声称标记语言(saml),来提供一个联合单点登录和属性交换框架。一个用户用他的组织的证书认证,组织(或idp)传送最少的必要的身份信息给sp实现认证决定。shibboleth也提供扩展的隐私功能,允许一个用户和他们的主站点来控制释放给每一个应用的属性。
shibboleth项目作为一个internet2中间件活动启动于2000年,这年晚些时候该项目和oasis saml工作组的工作相联系。shibboleth1.0 于2003年发布,并快速被全世界的研究和教育机构使用。随着2005年saml2.0的发布,2006年shibboleth2.0也发布,saml标准升级到包含所有的多边,由shibboleth首创的元数据驱动方法。
shibboleth作为开源软件开发,在apache 软件许可证下发布。关于个别部件的更多信息可以在产品页面看到。
2.安装shibboleth identity provider v3.2.1
- 切换成root
sudo su
2.下载shibboleth identity provider v3.2.1
wget http://shibboleth.net/downloads/identity-provider/latest/shibboleth-identity-provider-3.2.1.tar.gz tar -xzvf shibboleth-identity-provider-3.2.1.tar.gz cd shibboleth-identity-provider-3.2.1
3.安装shibboleth idenentity provider:
sh-3.2# ./install.sh source (distribution) directory (press to accept default): [/users/zhaoyu.zhaoyu/applications/shibboleth-identity-provider-3.3.2] installation directory: [/opt/shibboleth-idp] hostname: [localhost.localdomain] testdomain.com saml entityid: [https://testdomain.com/idp/shibboleth] attribute scope: [localdomain] backchannel pkcs12 password: re-enter password: cookie encryption key password: re-enter password: warning: /opt/shibboleth-idp/bin does not exist. warning: /opt/shibboleth-idp/dist does not exist. warning: /opt/shibboleth-idp/doc does not exist. warning: /opt/shibboleth-idp/system does not exist. warning: /opt/shibboleth-idp/webapp does not exist. generating signing key, cn = testdomain.com uri = https://testdomain.com/idp/shibboleth ... ...done creating encryption key, cn = testdomain.com uri = https://testdomain.com/idp/shibboleth ... ...done creating backchannel keystore, cn = testdomain.com uri = https://testdomain.com/idp/shibboleth ... ...done creating cookie encryption key files... ...done rebuilding /opt/shibboleth-idp/war/idp.war ... ...done build successful total time: 1 minute 14 seconds
(from now "{idp.home}" == /opt/shibboleth-idp/)
4.导入 jst library (status界面会用到):
cd /opt/shibboleth-idp/edit-webapp/web-inf/lib wget https://build.shibboleth.net/nexus/service/local/repositories/thirdparty/content/javax/servlet/jstl/1.2/jstl-1.2.jar cd /opt/shibboleth-idp/bin ./build.sh -didp.target.dir=/opt/shibboleth-idp
3.安装指引
3.1 安装apache tomcat 8
1.切换成root
sudo su -
2.修改tomcat的%{catalina_home}/conf/server.xml
将8080端口和8443端口的地方分别改成80和443
<connector port="80" protocol="http/1.1" connectiontimeout="20000" redirectport="443" />
3.生成证书文件
[chengxu@local]keytool -genkeypair -alias "tomcat" -keyalg "rsa" -keystore "./tomcat.keystore" 输入密钥库口令: 再次输入新口令: 您的名字与姓氏是什么? [unknown]: cheng 您的组织单位名称是什么? [unknown]: testdomain.com 您的组织名称是什么? [unknown]: testdomain.com 您所在的城市或区域名称是什么? [unknown]: 您所在的省/市/自治区名称是什么? [unknown]: 该单位的双字母国家/地区代码是什么? [unknown]: cn=cheng, ou=testdomain.com, o=testdomain.com, l=unknown, st=unknown, c=unknown是否正确? [否]: 是 输入 <tomcat> 的密钥口令 (如果和密钥库口令相同, 按回车): 再次输入新口令: [chengxu@local]
4.修改tomcat的%{catalina_home}/conf/server.xml,使支持https协议
<connector port="443" protocol="org.apache.coyote.http11.http11protocol" maxthreads="150" sslenabled="true" scheme="https" secure="true" clientauth="false" sslprotocol="tls" keystorefile="/users/chengxu/shibboleth/tomcat/tomcat.keystore" keystorepass="xxx"/>
5.发布idp web application到tomcat 8 container
vim %{catalina_home}/conf/catalina/localhost/idp.xml
<context docbase="/opt/shibboleth-idp/war/idp.war" privileged="true" antiresourcelocking="false" swallowoutput="true"/>
4.配置host
vim /etc/host 127.0.0.1 testdomain.com
5.重启tomcat
%{catalina_home}/bin/catalina.sh stop
%{catalina_home}/bin/catalina.sh start
6.检测是否服务启动正常
访问
或者/opt/shibboleth-idp/bin; ./status.sh
3.2 配置shibboleth连接ldap
编辑修改ldap.properties
vim /opt/shibboleth/conf/ldap.properties idp.authn.ldap.authenticator = bindsearchauthenticator idp.authn.ldap.ldapurl = ldap://ldap.example.it:389 idp.authn.ldap.usestarttls = false idp.authn.ldap.usessl = false idp.authn.ldap.basedn = cn=users,dc=example,dc=org idp.authn.ldap.userfilter = (uid={user}) idp.authn.ldap.binddn = cn=admin,cn=users,dc=example,dc=org idp.authn.ldap.binddncredential = ###ldap admin password###
6.修改shibboleth ldap配置
vim /opt/shibboleth/conf/services.xml 把 <value>%{idp.home}/conf/attribute-resolver.xmlvalue> 改为 <value>%{idp.home}/conf/attribute-resolver-full.xmlvalue>
vim /opt/shibboleth-idp/conf/attribute-resolver-full.xml 注释掉下列代码,如果已经注释掉了就不动了(有些版本已经注释了)
重启tomcat
7.获取idp metadata.xml
注意metadata.xml文件中的validuntil属性,如果过期了则修改为未来的某个时间点
4.小结
至此我们完成了shibboleth与ldap集成的安装过程
下篇: :