On Tuesday, January 31, 2017 at 12:45:30 AM UTC+1, alberto wrote: > > Thanks for your help. > > Rather than some confusing areas, it is just I don't even know how to > begin. IIRC, CAS 4 had some explaining (step by step) page with a basic > configuration to build things upon it. > > In the case of CAS 5 I couldn't find even a working, minimal pom.xml.
Hello Alberto, using the maven CAS overlay template helped me a lot to get started. Probably easiest to start using maven and spring-boot, which automatically includes a embedded Tomcat. Just a few manual steps which helped me: * create your own keystore using keygen * override configuration directory if the system /etc is not writable ( * update the log4j2.xml references in the included cas.properties file https://github.com/apereo/cas-overlay-template Fragment from my run script: >>> ETC=file:///repositories/cas/cas-overlay-template-master/etc mvn -Pmixed \ -Dspring.cloud.config.server.native.searchLocations=${ETC}/cas/config \ -Dserver.ssl.key-store=${ETC}/cas/cas5.jks \ spring-boot:run; <<< -- - CAS gitter chatroom: https://gitter.im/apereo/cas - CAS mailing list guidelines: https://apereo.github.io/cas/Mailing-Lists.html - CAS documentation website: https://apereo.github.io/cas - CAS project website: https://github.com/apereo/cas --- You received this message because you are subscribed to the Google Groups "CAS Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/a/apereo.org/d/msgid/cas-user/73d91527-ebb6-46bd-8170-d3a31355017e%40apereo.org.
