<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    狼愛上貍

    我胡漢三又回來了

    安裝配置Shibboleth

    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

    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 <enter> 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.檢測是否服務啟動正常
    訪問https://testdomain/idp/status
    或者/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.xml</value> 改為 <value>%{idp.home}/conf/attribute-resolver-full.xml</value>
    vim /opt/shibboleth-idp/conf/attribute-resolver-full.xml  注釋掉下列代碼,如果已經注釋掉了就不動了(有些版本已經注釋了)  <!-- <dc:StartTLSTrustCredential id="LDAPtoIdPCredential" xsi:type="sec:X509ResourceBacked">   <sec:Certificate>%     {idp.attribute.resolver.LDAP.trustCertificates}</sec:Certificate>   </dc:StartTLSTrustCredential> -->

    重啟tomcat

    7.獲取idp metadata.xml
    https://testdomain.com/idp/shibboleth
    注意metadata.xml文件中的validUntil屬性,如果過期了則修改為未來的某個時間點

    4.小結

    至此我們完成了Shibboleth與LDAP集成的安裝過程

    下篇: 實現Shibboleth+Ldap到阿里云的單點登錄

    來自https://yq.aliyun.com/articles/350531?tdsourcetag=s_pcqq_aiomsg&do=login&accounttraceid=87b0f203-5d81-4cb7-a986-49615e3962e2&do=login&do=login

    posted on 2020-03-09 18:20 狼愛上貍 閱讀(947) 評論(0)  編輯  收藏 所屬分類: Tomcat

    主站蜘蛛池模板: 亚洲精品夜夜夜妓女网 | 日韩亚洲不卡在线视频中文字幕在线观看 | 亚洲精品一级无码鲁丝片| 国产免费久久精品丫丫| 亚洲专区先锋影音| 免费涩涩在线视频网| aa在线免费观看| 国产精品亚洲专区在线观看| 免费在线观看黄色毛片| 日韩av无码久久精品免费| 亚洲中文字幕无码不卡电影| jizz在线免费观看| 91亚洲国产成人久久精品网址| 老司机69精品成免费视频| 亚洲色少妇熟女11p| 国语成本人片免费av无码| 一级毛片aa高清免费观看| 亚洲精品黄色视频在线观看免费资源 | 久久久高清免费视频| 精品国产福利尤物免费| 在线观看国产区亚洲一区成人| 一本一道dvd在线观看免费视频| 日韩亚洲精品福利| 一级毛片视频免费| 亚洲另类激情综合偷自拍图| 德国女人一级毛片免费 | 人人爽人人爽人人片A免费 | 88av免费观看| 七次郎成人免费线路视频| 亚洲制服丝袜第一页| 女人张开腿给人桶免费视频| 日韩在线视精品在亚洲| 91亚洲精品视频| 免费一本色道久久一区| 国产免费AV片在线观看| 精品视频免费在线| 亚洲天然素人无码专区| 亚洲视频在线观看免费视频| 在线免费观看中文字幕| 国产精品免费福利久久| 老司机精品免费视频|