zoukankan      html  css  js  c++  java
  • cas环境搭建

    cas-server 版本:4.0.0

    tomcat 7或者8

    jdk 1.7或1.8

    本次搭建环境,tomcat8、jdk1.7

      创建证书

    keytool -genkey -alias cas -keyalg RSA -keystore E:/keys/casKey

    注意:创建证书时,填写"您的名字与姓氏是什么"为后期用到的域名。域名不可是ip或者localhost

      导出证书

    keytool -export -file E:/keys/cas.crt -alias cas -keystore E:/keys/caskey
    

      将证书导入到jdk

    keytool -import -keystore D:/jdk/jre/lib/security/cacerts -file E:/keys/cas.crt -alias cas

    注意:导入证书的口令默认为changeit,并不是之前创建证书的口令

      

    特别注意:如果安装有独立的jre,将证书导入到独立的jre中,否则通过应用访问时会报一个错误
    javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
    
    参考地址:https://blog.csdn.net/aosica321/article/details/54945553
    

      查看导入jdk中的证书

    keytool -list -keystore "D:/jdk/jre/lib/security/cacerts" | findstr /i cas
    

      删除jdk中的证书

    keytool -delete -alias cas -keystore "D:/jdk/jre/lib/security/cacerts" -storepass changeit
    

      修改tomcat/server.xml文件

    修改前:
    <Connector port="8040" protocol="HTTP/1.1"
                   connectionTimeout="20000"
                   redirectPort="8444"/>
    
    修改后:
    <Connector port="8040" protocol="HTTP/1.1"
                   connectionTimeout="20000"
                   redirectPort="8444" SSLEnabled="true" maxThreads="150"
    			   scheme="https" ecure="true" clientAuth="false" sslProtocol="TLS"
    			   keystoreFile="E:\keys\casKey" keystorePass="创建证书时录入的口令" />
    

      修改hosts文件

    127.0.0.1    创建证书时写的姓名(域名)

      修改cas服务中的cas/WEB-INF/deployerConfigContext.xml文件

    <?xml version="1.0" encoding="UTF-8"?>
    <!--
    
        Licensed to Jasig under one or more contributor license
        agreements. See the NOTICE file distributed with this work
        for additional information regarding copyright ownership.
        Jasig licenses this file to you under the Apache License,
        Version 2.0 (the "License"); you may not use this file
        except in compliance with the License.  You may obtain a
        copy of the License at the following location:
    
          http://www.apache.org/licenses/LICENSE-2.0
    
        Unless required by applicable law or agreed to in writing,
        software distributed under the License is distributed on an
        "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
        KIND, either express or implied.  See the License for the
        specific language governing permissions and limitations
        under the License.
    
    -->
    <!--
    | deployerConfigContext.xml centralizes into one file some of the declarative configuration that
    | all CAS deployers will need to modify.
    |
    | This file declares some of the Spring-managed JavaBeans that make up a CAS deployment.  
    | The beans declared in this file are instantiated at context initialization time by the Spring 
    | ContextLoaderListener declared in web.xml.  It finds this file because this
    | file is among those declared in the context parameter "contextConfigLocation".
    |
    | By far the most common change you will need to make in this file is to change the last bean
    | declaration to replace the default authentication handler with
    | one implementing your approach for authenticating usernames and passwords.
    +-->
    
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns:p="http://www.springframework.org/schema/p"
           xmlns:c="http://www.springframework.org/schema/c"
           xmlns:tx="http://www.springframework.org/schema/tx"
           xmlns:util="http://www.springframework.org/schema/util"
           xmlns:sec="http://www.springframework.org/schema/security"
           xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
           http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.2.xsd
           http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
    
        <!--
           | The authentication manager defines security policy for authentication by specifying at a minimum
           | the authentication handlers that will be used to authenticate credential. While the AuthenticationManager
           | interface supports plugging in another implementation, the default PolicyBasedAuthenticationManager should
           | be sufficient in most cases.
           +-->
        <bean id="authenticationManager" class="org.jasig.cas.authentication.PolicyBasedAuthenticationManager">
            <constructor-arg>
                <map>
                    <!--
                       | IMPORTANT
                       | Every handler requires a unique name.
                       | If more than one instance of the same handler class is configured, you must explicitly
                       | set its name to something other than its default name (typically the simple class name).
                       -->
                    <entry key-ref="proxyAuthenticationHandler" value-ref="proxyPrincipalResolver" />
                     <entry key-ref="primaryAuthenticationHandler" value-ref="primaryPrincipalResolver" />
    				 <!-- key-ref指定自己的本地数据库访问 -->
    				<entry key-ref="dbAuthHandler" value-ref="primaryPrincipalResolver"/>
                </map>
            </constructor-arg>
    
            <!-- Uncomment the metadata populator to allow clearpass to capture and cache the password
                 This switch effectively will turn on clearpass.
            <property name="authenticationMetaDataPopulators">
               <util:list>
                  <bean class="org.jasig.cas.extension.clearpass.CacheCredentialsMetaDataPopulator"
                        c:credentialCache-ref="encryptedMap" />
               </util:list>
            </property>
            -->
    
            <!--
               | Defines the security policy around authentication. Some alternative policies that ship with CAS:
               |
               | * NotPreventedAuthenticationPolicy - all credential must either pass or fail authentication
               | * AllAuthenticationPolicy - all presented credential must be authenticated successfully
               | * RequiredHandlerAuthenticationPolicy - specifies a handler that must authenticate its credential to pass
               -->
            <property name="authenticationPolicy">
                <bean class="org.jasig.cas.authentication.AnyAuthenticationPolicy" />
            </property>
        </bean>
    
        <!-- Required for proxy ticket mechanism. -->
        <bean id="proxyAuthenticationHandler"
              class="org.jasig.cas.authentication.handler.support.HttpBasedServiceCredentialsAuthenticationHandler"
              p:httpClient-ref="httpClient" p:requireSecure="false"/>
    
        <!--
           | TODO: Replace this component with one suitable for your enviroment.
           |
           | This component provides authentication for the kind of credential used in your environment. In most cases
           | credential is a username/password pair that lives in a system of record like an LDAP directory.
           | The most common authentication handler beans:
           |
           | * org.jasig.cas.authentication.LdapAuthenticationHandler
           | * org.jasig.cas.adaptors.jdbc.QueryDatabaseAuthenticationHandler
           | * org.jasig.cas.adaptors.x509.authentication.handler.support.X509CredentialsAuthenticationHandler
           | * org.jasig.cas.support.spnego.authentication.handler.support.JCIFSSpnegoAuthenticationHandler
           -->
       <bean id="primaryAuthenticationHandler"
              class="org.jasig.cas.authentication.AcceptUsersAuthenticationHandler">
            <property name="users">
                <map>
                    <entry key="admin" value="admin"/>
                </map>
            </property>
        </bean>
    
        <!-- Required for proxy ticket mechanism -->
        <bean id="proxyPrincipalResolver" class="org.jasig.cas.authentication.principal.BasicPrincipalResolver" />
    
        <!--
           | Resolves a principal from a credential using an attribute repository that is configured to resolve
           | against a deployer-specific store (e.g. LDAP).
           -->
        <bean id="primaryPrincipalResolver"
              class="org.jasig.cas.authentication.principal.PersonDirectoryPrincipalResolver" >
            <property name="attributeRepository" ref="attributeRepository" />
        </bean>
    
        <!--
        Bean that defines the attributes that a service may return.  This example uses the Stub/Mock version.  A real implementation
        may go against a database or LDAP server.  The id should remain "attributeRepository" though.
        +-->
        <!-- 修改前  -->
        <!-- <bean id="attributeRepository" class="cn.com.hnjz.cas.BlogStubPersonAttributeDao"
                p:backingMap-ref="attrRepoBackingMap" />
        
        <util:map id="attrRepoBackingMap">
            <entry key="userName" value="userName" />
        </util:map> -->
        <!-- 修改前 end -->
        
        <!-- 修改后 -->
        <bean id="attributeRepository" class="org.jasig.services.persondir.support.jdbc.SingleRowJdbcPersonAttributeDao"> 
    	    <constructor-arg index="0" ref="dataSource" /> 
    	    <constructor-arg index="1" value="select ID_ as id,PASSWORD_ as pwd from T_SYS_USER where {0}" /> 
    	    <property name="queryAttributeMapping"> 
    	       <map> 
    	           <!-- 这里的key需写username和登录页面一致,value对应数据库用户名字段 
    	           		select ID_ as id from sys_user where USERNAME_=#username#
    	            -->
    	           <entry key="username" value="USERNAME_"/> 
    	       </map> 
    	    </property> 
    	    <property name="resultAttributeMapping"> 
    	       <map> 
    	          <!--  key为对应的数据库字段名称,value为提供给客户端获取的属性名字,系统会自动填充值  -->
    	           <entry key="id" value="id"/> 
    	           <entry key="pwd" value="pwd"/> 
    	       </map> 
    	    </property> 
        </bean>
        <!-- 修改后 end -->
    
        <!-- 
        Sample, in-memory data store for the ServiceRegistry. A real implementation
        would probably want to replace this with the JPA-backed ServiceRegistry DAO
        The name of this bean should remain "serviceRegistryDao".
        +-->
        <!-- 修改前 -->
        <!-- <bean id="serviceRegistryDao" class="org.jasig.cas.services.InMemoryServiceRegistryDaoImpl"
                p:registeredServices-ref="registeredServicesList" />
        <util:list id="registeredServicesList">
            <bean class="org.jasig.cas.services.RegexRegisteredService"
                  p:id="0" p:name="HTTP and IMAP" p:description="Allows HTTP(S) and IMAP(S) protocols"
                  p:serviceId="^(https?|imaps?)://.*" p:evaluationOrder="10000001" />  </util:list>-->
          <!-- 修改后 -->
          <bean id="serviceRegistryDao" class="org.jasig.cas.services.InMemoryServiceRegistryDaoImpl" 
          p:registeredServices-ref="registeredServicesList" />
    
    	<util:list id="registeredServicesList">
    	    <bean class="org.jasig.cas.services.RegexRegisteredService"
    	          p:id="1"
    	          p:name="HTTPS and IMAPS services on example.com"
    	          p:serviceId="^(https?|imaps?)://.*"
    	          p:evaluationOrder="0" >
    	            <property name="proxyPolicy">
    	        		<bean class="org.jasig.cas.services.RegexMatchingRegisteredServiceProxyPolicy" c:pgtUrlPattern="^https?://.*" />
    	            </property>
    	   </bean>
    	</util:list>
    	       
            <!--
            Use the following definition instead of the above to further restrict access
            to services within your domain (including sub domains).
            Note that example.com must be replaced with the domain you wish to permit.
            This example also demonstrates the configuration of an attribute filter
            that only allows for attributes whose length is 3.
            -->
        
        <bean id="auditTrailManager" class="com.github.inspektr.audit.support.Slf4jLoggingAuditTrailManager" />
        
        <bean id="healthCheckMonitor" class="org.jasig.cas.monitor.HealthCheckMonitor" p:monitors-ref="monitorsList" />
      
        <util:list id="monitorsList">
          <bean class="org.jasig.cas.monitor.MemoryMonitor" p:freeMemoryWarnThreshold="10" />
          <!--
            NOTE
            The following ticket registries support SessionMonitor:
              * DefaultTicketRegistry
              * JpaTicketRegistry
            Remove this monitor if you use an unsupported registry.
          -->
          <bean class="org.jasig.cas.monitor.SessionMonitor"
              p:ticketRegistry-ref="ticketRegistry"
              p:serviceTicketCountWarnThreshold="5000"
              p:sessionCountWarnThreshold="100000" />
        </util:list>
    	
    	<!-- mysql连接 -->
    	<!--  <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
    	    <property name="driverClassName" value="com.mysql.jdbc.Driver" />
    	    <property name="url" value="jdbc:mysql://localhost:3306/cas?useUnicode=true&characterEncoding=UTF-8"/>
    	    <property name="username" value="root" />
    	    <property name="password" value="root" />
    	</bean> -->
    	
    	<!-- oracle连接 -->
    	 <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
    		<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver" />
    		<property name="url" value="jdbc:oracle:thin:@localhost:1521:orcl"/>
    		<property name="username" value="username" />
    		<property name="password" value="password" />
    	</bean>
    	
    	<!-- 访问本地数据库 -->
    	<bean id="dbAuthHandler"
    	      class="org.jasig.cas.adaptors.jdbc.QueryDatabaseAuthenticationHandler">
    	      <property name="dataSource" ref="dataSource"></property>  
    	      <property name="sql" value="SELECT PASSWORD_ FROM SYS_USER WHERE USERNAME_ = ? and ISACTIVE_='Y' "></property> 
    		  <property name="passwordEncoder" ref="MD5PasswordEncoder"></property>
    	</bean>	  
    	  
    	<!-- SSO密码加密配置 -->  
        <bean id="MD5PasswordEncoder" class="org.jasig.cas.authentication.handler.DefaultPasswordEncoder">  
            <constructor-arg index="0">  
                <value>MD5</value>  
            </constructor-arg>  
        </bean> 
    
    </beans>
    

        配置cas-client,创建一个web项目,修改web.xml文件

    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" 
    	xmlns="http://java.sun.com/xml/ns/javaee" 
    	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
      <display-name></display-name>	
      <welcome-file-list>
        <welcome-file>index.jsp</welcome-file>
      </welcome-file-list>
      
      <!-- ****************** 单点登录开始 ********************-->  
        <!-- 用于实现单点登出功能  可选 -->  
        <listener>  
            <listener-class>org.jasig.cas.client.session.SingleSignOutHttpSessionListener</listener-class>  
        </listener>  
    
        <!-- 该过滤器用于实现单点登出功能,单点退出配置,一定要放在其他filter之前 可选 -->  
        <filter>  
            <filter-name>CAS Single Sign Out Filter</filter-name>  
            <filter-class>org.jasig.cas.client.session.SingleSignOutFilter</filter-class>  
            <init-param>  
                <param-name>casServerUrlPrefix</param-name>  
                <param-value>https://创建证书时写的姓名:8040/cas/</param-value>  
            </init-param>  
        </filter>  
        <filter-mapping>  
            <filter-name>CAS Single Sign Out Filter</filter-name>  
            <url-pattern>/*</url-pattern>  
        </filter-mapping>  
      
        <!-- 该过滤器负责用户的认证工作,必须 -->  
        <filter>  
            <filter-name>CASFilter</filter-name>  
            <filter-class>org.jasig.cas.client.authentication.AuthenticationFilter</filter-class>  
            <init-param>  
                <!--casServerLoginUrl:cas服务的登陆url -->  
                <param-name>casServerLoginUrl</param-name>  
                <param-value>https://创建证书时写的姓名:8040/cas/login</param-value>  
            </init-param>  
            <init-param>  
                <!--serverName:本项目的ip+port -->  
                <param-name>serverName</param-name>  
                <param-value>https://创建证书时写的姓名:8040</param-value>  
            </init-param>  
            <init-param>  
                <param-name>useSession</param-name>  
                <param-value>true</param-value>  
            </init-param>  
            <init-param>  
                <param-name>redirectAfterValidation</param-name>  
                <param-value>true</param-value>  
            </init-param>  
        </filter>  
        <filter-mapping>  
            <filter-name>CASFilter</filter-name>  
            <url-pattern>/*</url-pattern>  
        </filter-mapping>  
     
        <!-- 该过滤器负责对Ticket的校验工作,必须-->  
        <filter>  
            <filter-name>CAS Validation Filter</filter-name>  
            <filter-class>  
                org.jasig.cas.client.validation.Cas20ProxyReceivingTicketValidationFilter  
            </filter-class>  
            <init-param>  
                <param-name>casServerUrlPrefix</param-name>  
                <param-value>https://创建证书时写的姓名:8040/cas/</param-value>  
            </init-param>  
            <init-param>  
                <param-name>serverName</param-name>  
                <param-value>https://创建证书时写的姓名:8040</param-value>  
            </init-param>  
        </filter>  
        <filter-mapping>  
            <filter-name>CAS Validation Filter</filter-name>  
            <!-- 对项目中的哪些路径做登录拦截-->  
            <url-pattern>/*</url-pattern>  
        </filter-mapping>  
      
        <!-- 该过滤器对HttpServletRequest请求包装, 可通过HttpServletRequest的getRemoteUser()方法获得登录用户的登录名,可选 -->  
        <filter>  
            <filter-name>CAS HttpServletRequest Wrapper Filter</filter-name>  
            <filter-class>  
                org.jasig.cas.client.util.HttpServletRequestWrapperFilter  
            </filter-class>  
        </filter>  
        <filter-mapping>  
            <filter-name>CAS HttpServletRequest Wrapper Filter</filter-name>  
            <url-pattern>/*</url-pattern>  
        </filter-mapping>  
       
        <!-- 该过滤器使得可以通过org.jasig.cas.client.util.AssertionHolder来获取用户的登录名。  
             比如AssertionHolder.getAssertion().getPrincipal().getName()。   
             这个类把Assertion信息放在ThreadLocal变量中,这样应用程序不在web层也能够获取到当前登录信息 -->  
        <filter>  
            <filter-name>CAS Assertion Thread Local Filter</filter-name>  
            <filter-class>org.jasig.cas.client.util.AssertionThreadLocalFilter</filter-class>  
        </filter>  
        <filter-mapping>  
            <filter-name>CAS Assertion Thread Local Filter</filter-name>  
            <url-pattern>/*</url-pattern>  
        </filter-mapping>  
        <!-- ****************** 单点登录结束 ********************-->  
    </web-app>
    

      

    运行tomcat,访问https://创建证书时的姓名:8040/cas-client/

  • 相关阅读:
    WordPaster-CuteEditor6.7整合教程
    WordPress-Word图片上传插件整合教程-Xproer.WordPaster
    WordPress 3.7.1-web截屏插件整合教程-Xproer.ScreenCapture
    WordPaster-KesionCMS V9整合教程
    WordPaster-KesionCMS V8整合教程
    ScreenCapture-HDwik5.0整合教程
    WordPaster-HDwik5.0整合教程
    Docker处理日志的方法&日志收集工具比较
    Alpine Linux
    利用apt-get 进行jdk安装;vim安装
  • 原文地址:https://www.cnblogs.com/l412382979/p/8818765.html
Copyright © 2011-2022 走看看