Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
Alright. I will review this document. -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user

Re: [cas-user] several very basic cas install questions

2015-10-15 Thread Dmitriy Kopylenko
In this particular overlay, those files are externalized to this particular location: `/etc/cas`. Have you gone through the doc: http://jasig.github.io/cas/4.1.x/installation/Maven-Overlay-Installation.html ? All of

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
But shouldn't cas.property and log-whatever just be built into my war? -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user

Re: [cas-user] several very basic cas install questions

2015-10-15 Thread Dmitriy Kopylenko
Create directory `/etc/cas` or `c:\etc\cas` if on windows and copy cas.properties and log4j2.xml there. But in general, you will need to look at your Servlet container’s logs to see what is going on when you deploy cas.war and for any indications of errors, etc. D. > On Oct 15, 2015, at 2:27 P

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
Alright, here's where I'm at: I deleted ldapConfigContext. I copied and pasted the default deployConfigContext from github into my deployConfigContext, so that took care of any LDAP stuff in deployConfigContext. I deleted the LDAP dependency from the pom. It built but I'n unable to access ca

Re: [cas-user] several very basic cas install questions

2015-10-15 Thread Dmitriy Kopylenko
It won’t deploy, as it will require you to have an LDAP directory available. You could simply delete it altogether and this will allow Maven to pull in the default one from CAS’ published war artifact, which is this -> https://github.com/Jasig/cas/blob/v4.1.0/cas-server-webapp/src/main/webapp/WE

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
What will happen if I just leave the LDAP stuff in deployConfig? Will it break the war? -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
I'll d both. -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user

Re: [cas-user] several very basic cas install questions

2015-10-15 Thread Dmitriy Kopylenko
That’d be git stuff i.e. `git clone g...@github.com:UniconLabs/simple-cas4-overlay-template.git` followed by `git checkout cas41-with-HZ-and-LDAP` But for the better results, I’d highly recommend you start here: http://jasig.github.io/cas/4.1.x/installation/Maven-Overlay-Installation.html

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
Alright: last question. When you say, "You could just clone it", what's the "it" specifically that you're referring to? And how do I check the branch out? This will probably be my last question. Sorry to bombard you. -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mai

Re: [cas-user] several very basic cas install questions

2015-10-15 Thread Dmitriy Kopylenko
No. That documentation link is for the “development” version which is not currently released (4.2.0). That bean “alias" is a new feature and will be available in 4.2.0. This is the correct link for the current GA version -> http://jasig.github.io/cas/4.1.x/installation/Hazelcast-Ticket-Registry

Re: [cas-user] several very basic cas install questions

2015-10-15 Thread Dmitriy Kopylenko
You don’t need to include any files. Just use the overlay as is. When you `mvn clean package` it will pull the appropriate dependencies (already pre-declared in the pom.xml) and will assemble the final cas.war archive ready for deployment. As for LDAP, you just get rid of that dependency in the

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
Do I need to include the hazelcast alias line in deployerConfigContext from cas's documentation? -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
Also, we're not using LDAP or anything like that. Just CAS. So... -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
Okay, that's fine. What I don't understand is what files do I actually need from cas to include? Or am I missing something? -- You are currently subscribed to cas-user@lists.jasig.org as: arch...@mail-archive.com To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wi

Re: [cas-user] several very basic cas install questions

2015-10-15 Thread Dmitriy Kopylenko
Check this branch out: https://github.com/UniconLabs/simple-cas4-overlay-template/tree/cas41-with-HZ-and-LDAP It uses the 4.1.0 and is pre-configured with Hazelcast ticket registry. You could just clone it

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
Okay, so I've looked at the overlay template. Okay. So my only question is: what files from CAS do I need to include to correctly build cas-server-integration-hazelcast? Do I need to include cas-server-webapp? How about also cas-server-integration-hazelcast? What else? I think this will ge

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Milt Epstein
Did you look at the sample Maven overlay from Unicon?: https://github.com/UniconLabs/simple-cas4-overlay-template That contains a pom.xml, as well as a few other things that are commonly customized -- in etc there's cas.properties and log4j2.xml, and under the src branch there's spring-configurat

Re:[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
Milt: So I create a separate directory with a separate pom. Okay. Where do I get everything I need to put in that pom (besides the dependency that's mentioned in Cas's Hazelcast doc: http://jasig.github.io/cas/development/installation/Hazelcast-Ticket-Registry.html)? What other files should

Re: [cas-user] several very basic cas install questions

2015-10-15 Thread Milt Epstein
Sounds like you're not using the Maven overlay process properly. You need to create a separate directory, with a pom.xml and whatever other files and directories and directory structure you need (e.g., what you're overriding from the base install). You make changes there (e.g., copying in the bas

[cas-user] several very basic cas install questions

2015-10-15 Thread Jonas Steinberg
I've been working very hard on my cas install the last couple days so I pretty much know what needs to be done. Now I just have a couple of basic questions and that should get me on my way. 1) The instructions for http://jasig.github.io/cas/development/installation/Hazelcast-Ticket-Registry.ht