RE: [cas-user] CAS ldap against AD?

2017-12-15 Thread Tim Tyler
:* Wednesday, December 13, 2017 4:20 PM *To:* cas-user@apereo.org *Subject:* Re: [cas-user] CAS ldap against AD? We use SSL as startTLS tends to complain, saying it has already occurred, so SSL. You will want the cert from the server you are connecting to, which you can pull with openssl like so

Re: [cas-user] CAS ldap against AD?

2017-12-13 Thread michael kromarek
We use SSL as startTLS tends to complain, saying it has already occurred, so SSL. You will want the cert from the server you are connecting to, which you can pull with openssl like so: echo -n | openssl s_client -connect 192.168.1.225:636 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > l

Re: [cas-user] CAS ldap against AD?

2017-12-13 Thread David Curry
You might find this link helpful. It's a work in progress and not "official" documentation, but it does include, among other things, an example and step-by-step instructions for how to configure for AD, both authentication and attributes. https://dacurry-tns.github.io/deploying-apereo-cas/ David

[cas-user] CAS ldap against AD?

2017-12-13 Thread Tim Tyler
I am a newbie to CAS. I just installed 5.2 using Maven. I successfully logged in via the test account of causer. But now I want to get ldap against active directory working. I successfully installed the dependencies and that seems ok. My issue is with configuring cas.properties. I read on-