Overview
- SSO(Single Sign-on) in Action(上篇)
- 使用 CAS 在 Tomcat 中实现单点登录
- http://jasig.github.io/cas/4.0.x/planning/Architecture.html
CAS Server/Client Up and Running
See more at:
- https://wiki.jasig.org/display/CASC/CAS+Client+for+Java+3.1
- https://wiki.jasig.org/display/CASC/JA-SIG+Java+Client+Simple+WebApp+Sample
Change Host Name
Modify C:\Windows\System32\drivers\etc\hosts
127.0.0.1 compa
Preparing The Tomcat Servers
Download tomcat.
Preparing And/Or Creating The Certificates
windows:
keytool -genkey -alias app1.company.com -keyalg RSA -storepass changeit
keytool -export -alias app1.company.com -file app1.company.com.cert -storepass changeit
keytool -list -keystore %JAVA_HOME%\jre\lib\security\cacerts -alias app1.company.com -storepass changeit
keytool -delete -keystore %JAVA_HOME%\jre\lib\security