SSO CAS 单点登录

http://eeyyo.blog.hexun.com/59665737_d.html

CAS SSO 单点登录 不同的版本的tomcat ,在service.xml 的配置不同,以下是tomcat7 的service.xml的配置

注:  一定要把默认的protocol="HTTP/1.1"   修改为 protocol="org.apache.coyote.http11.Http11Protocol

  <Connector port="8443"    protocol="org.apache.coyote.http11.Http11Protocol"       SSLEnabled="true"
               maxThreads="150" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS"
               keystoreFile="D:/apache-tomcat-7.0.25/server.keystore"
               eystorePass="changeit"
               />

猜你喜欢

转载自hgx615.iteye.com/blog/1541343