Re: [cas-user] cas-management application

2020-07-28 Thread William Jojo
Travis,

I am producing some documentation on a bunch of topics that have been 
popping up here of late (Apache-shib, mod-auth-cas, cas-management, locust, 
etc) which I plan to release shortly. I wanted to know if there was a 
branch that needs testing so I can update the cas-management docs 
accordingly.

Thank you!

Bill

On Thursday, July 23, 2020 at 3:49:08 PM UTC-4, Travis Schmidt wrote:
>
> Sorry for my absence and radio silence on this.  I had some high priority 
> projects come up that were eating up my time.  I am finally getting 
> around to looking into a 6.2 deployment.  I will be creating a 6.1.x branch 
> and cutting that release, then I will get master switched over to start 
> creating 6.2.x snapshots for those using the gradel overlays and hopefully 
> a 6.2 GA release soon.
>
> Travis
>
> On Thu, Jul 23, 2020 at 11:51 AM Rich Renomeron  > wrote:
>
>> Hi Bryan,
>>
>> You mentioned a version 6.2 of the cas-management application, but I have 
>> been unable to find that version in Github (the HEAD revision is 
>> 6.1.4-SNAPSHOT).  Since you're using a 6.1.6 CAS, was that a typo, or am 
>> I missing something?  (I'm working on a 6.2 deployment right now, so I'd 
>> love to find a 6.2 cas-management application.)
>>
>> Thanks,
>> Rich
>>
>> On Tue, Jul 7, 2020 at 5:38 AM Stef > 
>> wrote:
>>
>>> Hi Bryan,
>>> If you want to completely disable version control you can do this in 
>>> build.gradle:
>>>
>>> bootWar {
>>> entryCompression = ZipEntryCompression.STORED
>>> overlays {
>>> // 
>>> https://docs.freefair.io/gradle-plugins/current/reference/#_io_freefair_war_overlay
>>> // Note: The "excludes" property is only for files in the war 
>>> dependency.
>>> // If a jar is excluded from the war, it could be brought back 
>>> into the final war as a dependency
>>> // of non-war dependencies. Those should be excluded via normal 
>>> gradle dependency exclusions.
>>> cas {
>>> from 
>>> "org.apereo.cas:cas-mgmt-webapp${project.appServer}:${casMgmtServerVersion}@war"
>>> provided = false
>>> excludes = ["**/cas-mgmt-config-version-control*.jar", 
>>> "**/cas-mgmt-config-delegated*.jar", "**/HikariCP-java7-2.4.13.jar"]
>>> }
>>> }
>>>
>>> }
>>>
>>>
>>> Then the only thing you need for services is 
>>>
>>> cas.serviceRegistry.json.location=file:/etc/cas/services
>>>
>>>
>>> Stéphane
>>>
>>> Le lun. 6 juil. 2020 à 22:47, Bryan Wooten >> > a écrit :
>>>
 Thank you Ray. This helps.

 I see you are very active/helpful on this list...

 Perhaps one day I will return the favor.

 -Bryan

 University of Utah.

 On Mon, Jul 6, 2020 at 1:04 PM Ray Bon > 
 wrote:

> Bryan,
>
> I am just looking into cas management after a bit of a break from my 
> first frustrating attempt. My impression is that cas management is trying 
> to leverage the cas packages. The version of cas management must be the 
> same as a source of cas packages (I am working with 6.1.4-SNAPSHOT), but 
> does not have to be the same as the deployed cas ( it ca be older for 
> sure). This also means that the properties will be the same as those for 
> cas.
> I have not tried turning off version control for the services. First 
> time I tried, it was problematic. For the extra step of confirming 
> changes 
> to a service, it is probably not worth the effort. Just create a writable 
> directory (or make the default writable) for the git repo and be done 
> with 
> it.
> We store our services in ldap (so no file sync), but I am not that far 
> along in my config, maybe later this week or next.
>
> Ray
>
> On Mon, 2020-07-06 at 11:52 -0600, Bryan Wooten wrote:
>
> I was wondering if any of you fine folks could help me. 
>
> I am trying to get cas-management application (6.2) with a Cas 6.1.6 
> server. (I can change the cas-management version if needed.
>
> Anyway I am having trouble understanding the docs and and 
> management.properties settings.
>
> I am simply trying to manage a 1000 json file /etc/cas.config/services 
> directory.
>
> We don't need/want version control at this time or any file sync.
>
> At startup we get errors like this:
>
> Origin: "mgmt.enableVersionControl" from property source 
> "bootstrapProperties"
> Reason: The elements 
> [mgmt.enabledelegatedmgmt,mgmt.enableversioncontrol,mgmt.servicesrepo,mgmt.syncscript,mgmt.userrep
> osdir] were left unbound.
>
> For example, what is mgmt.userrep?
>
> If someone could share the management properties file that would be 
> great.
>
> -Bryan
>
> University of Utah
>
> -- 
>
> Ray Bon
> Programmer Analyst
> Development Services, University Systems
> 2507218831 | CLE 019 | rb...@uvic.ca 
>
> I 

Re: [cas-user] cas-management application

2020-07-23 Thread Travis Schmidt
Sorry for my absence and radio silence on this.  I had some high priority
projects come up that were eating up my time.  I am finally getting
around to looking into a 6.2 deployment.  I will be creating a 6.1.x branch
and cutting that release, then I will get master switched over to start
creating 6.2.x snapshots for those using the gradel overlays and hopefully
a 6.2 GA release soon.

Travis

On Thu, Jul 23, 2020 at 11:51 AM Rich Renomeron 
wrote:

> Hi Bryan,
>
> You mentioned a version 6.2 of the cas-management application, but I have
> been unable to find that version in Github (the HEAD revision is
> 6.1.4-SNAPSHOT).  Since you're using a 6.1.6 CAS, was that a typo, or am
> I missing something?  (I'm working on a 6.2 deployment right now, so I'd
> love to find a 6.2 cas-management application.)
>
> Thanks,
> Rich
>
> On Tue, Jul 7, 2020 at 5:38 AM Stef  wrote:
>
>> Hi Bryan,
>> If you want to completely disable version control you can do this in
>> build.gradle:
>>
>> bootWar {
>> entryCompression = ZipEntryCompression.STORED
>> overlays {
>> //
>> https://docs.freefair.io/gradle-plugins/current/reference/#_io_freefair_war_overlay
>> // Note: The "excludes" property is only for files in the war
>> dependency.
>> // If a jar is excluded from the war, it could be brought back
>> into the final war as a dependency
>> // of non-war dependencies. Those should be excluded via normal
>> gradle dependency exclusions.
>> cas {
>> from
>> "org.apereo.cas:cas-mgmt-webapp${project.appServer}:${casMgmtServerVersion}@war
>> "
>> provided = false
>> excludes = ["**/cas-mgmt-config-version-control*.jar",
>> "**/cas-mgmt-config-delegated*.jar", "**/HikariCP-java7-2.4.13.jar"]
>> }
>> }
>>
>> }
>>
>>
>> Then the only thing you need for services is
>>
>> cas.serviceRegistry.json.location=file:/etc/cas/services
>>
>>
>> Stéphane
>>
>> Le lun. 6 juil. 2020 à 22:47, Bryan Wooten  a
>> écrit :
>>
>>> Thank you Ray. This helps.
>>>
>>> I see you are very active/helpful on this list...
>>>
>>> Perhaps one day I will return the favor.
>>>
>>> -Bryan
>>>
>>> University of Utah.
>>>
>>> On Mon, Jul 6, 2020 at 1:04 PM Ray Bon  wrote:
>>>
 Bryan,

 I am just looking into cas management after a bit of a break from my
 first frustrating attempt. My impression is that cas management is trying
 to leverage the cas packages. The version of cas management must be the
 same as a source of cas packages (I am working with 6.1.4-SNAPSHOT), but
 does not have to be the same as the deployed cas ( it ca be older for
 sure). This also means that the properties will be the same as those for
 cas.
 I have not tried turning off version control for the services. First
 time I tried, it was problematic. For the extra step of confirming changes
 to a service, it is probably not worth the effort. Just create a writable
 directory (or make the default writable) for the git repo and be done with
 it.
 We store our services in ldap (so no file sync), but I am not that far
 along in my config, maybe later this week or next.

 Ray

 On Mon, 2020-07-06 at 11:52 -0600, Bryan Wooten wrote:

 I was wondering if any of you fine folks could help me.

 I am trying to get cas-management application (6.2) with a Cas 6.1.6
 server. (I can change the cas-management version if needed.

 Anyway I am having trouble understanding the docs and and
 management.properties settings.

 I am simply trying to manage a 1000 json file /etc/cas.config/services
 directory.

 We don't need/want version control at this time or any file sync.

 At startup we get errors like this:

 Origin: "mgmt.enableVersionControl" from property source
 "bootstrapProperties"
 Reason: The elements
 [mgmt.enabledelegatedmgmt,mgmt.enableversioncontrol,mgmt.servicesrepo,mgmt.syncscript,mgmt.userrep
 osdir] were left unbound.

 For example, what is mgmt.userrep?

 If someone could share the management properties file that would be
 great.

 -Bryan

 University of Utah

 --

 Ray Bon
 Programmer Analyst
 Development Services, University Systems
 2507218831 | CLE 019 | r...@uvic.ca

 I respectfully acknowledge that my place of work is located within the
 ancestral, traditional and unceded territory of the Songhees, Esquimalt and
 WSÁNEĆ Nations.

 --
 - Website: https://apereo.github.io/cas
 - Gitter Chatroom: https://gitter.im/apereo/cas
 - List Guidelines: https://goo.gl/1VRrw7
 - Contributions: https://goo.gl/mh7qDG
 ---
 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 

Re: [cas-user] cas-management application

2020-07-23 Thread Rich Renomeron
Hi Bryan,

You mentioned a version 6.2 of the cas-management application, but I have
been unable to find that version in Github (the HEAD revision is
6.1.4-SNAPSHOT).  Since you're using a 6.1.6 CAS, was that a typo, or am
I missing something?  (I'm working on a 6.2 deployment right now, so I'd
love to find a 6.2 cas-management application.)

Thanks,
Rich

On Tue, Jul 7, 2020 at 5:38 AM Stef  wrote:

> Hi Bryan,
> If you want to completely disable version control you can do this in
> build.gradle:
>
> bootWar {
> entryCompression = ZipEntryCompression.STORED
> overlays {
> //
> https://docs.freefair.io/gradle-plugins/current/reference/#_io_freefair_war_overlay
> // Note: The "excludes" property is only for files in the war
> dependency.
> // If a jar is excluded from the war, it could be brought back
> into the final war as a dependency
> // of non-war dependencies. Those should be excluded via normal
> gradle dependency exclusions.
> cas {
> from
> "org.apereo.cas:cas-mgmt-webapp${project.appServer}:${casMgmtServerVersion}@war
> "
> provided = false
> excludes = ["**/cas-mgmt-config-version-control*.jar",
> "**/cas-mgmt-config-delegated*.jar", "**/HikariCP-java7-2.4.13.jar"]
> }
> }
>
> }
>
>
> Then the only thing you need for services is
>
> cas.serviceRegistry.json.location=file:/etc/cas/services
>
>
> Stéphane
>
> Le lun. 6 juil. 2020 à 22:47, Bryan Wooten  a écrit :
>
>> Thank you Ray. This helps.
>>
>> I see you are very active/helpful on this list...
>>
>> Perhaps one day I will return the favor.
>>
>> -Bryan
>>
>> University of Utah.
>>
>> On Mon, Jul 6, 2020 at 1:04 PM Ray Bon  wrote:
>>
>>> Bryan,
>>>
>>> I am just looking into cas management after a bit of a break from my
>>> first frustrating attempt. My impression is that cas management is trying
>>> to leverage the cas packages. The version of cas management must be the
>>> same as a source of cas packages (I am working with 6.1.4-SNAPSHOT), but
>>> does not have to be the same as the deployed cas ( it ca be older for
>>> sure). This also means that the properties will be the same as those for
>>> cas.
>>> I have not tried turning off version control for the services. First
>>> time I tried, it was problematic. For the extra step of confirming changes
>>> to a service, it is probably not worth the effort. Just create a writable
>>> directory (or make the default writable) for the git repo and be done with
>>> it.
>>> We store our services in ldap (so no file sync), but I am not that far
>>> along in my config, maybe later this week or next.
>>>
>>> Ray
>>>
>>> On Mon, 2020-07-06 at 11:52 -0600, Bryan Wooten wrote:
>>>
>>> I was wondering if any of you fine folks could help me.
>>>
>>> I am trying to get cas-management application (6.2) with a Cas 6.1.6
>>> server. (I can change the cas-management version if needed.
>>>
>>> Anyway I am having trouble understanding the docs and and
>>> management.properties settings.
>>>
>>> I am simply trying to manage a 1000 json file /etc/cas.config/services
>>> directory.
>>>
>>> We don't need/want version control at this time or any file sync.
>>>
>>> At startup we get errors like this:
>>>
>>> Origin: "mgmt.enableVersionControl" from property source
>>> "bootstrapProperties"
>>> Reason: The elements
>>> [mgmt.enabledelegatedmgmt,mgmt.enableversioncontrol,mgmt.servicesrepo,mgmt.syncscript,mgmt.userrep
>>> osdir] were left unbound.
>>>
>>> For example, what is mgmt.userrep?
>>>
>>> If someone could share the management properties file that would be
>>> great.
>>>
>>> -Bryan
>>>
>>> University of Utah
>>>
>>> --
>>>
>>> Ray Bon
>>> Programmer Analyst
>>> Development Services, University Systems
>>> 2507218831 | CLE 019 | r...@uvic.ca
>>>
>>> I respectfully acknowledge that my place of work is located within the
>>> ancestral, traditional and unceded territory of the Songhees, Esquimalt and
>>> WSÁNEĆ Nations.
>>>
>>> --
>>> - Website: https://apereo.github.io/cas
>>> - Gitter Chatroom: https://gitter.im/apereo/cas
>>> - List Guidelines: https://goo.gl/1VRrw7
>>> - Contributions: https://goo.gl/mh7qDG
>>> ---
>>> 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 cas-user+unsubscr...@apereo.org.
>>> To view this discussion on the web visit
>>> https://groups.google.com/a/apereo.org/d/msgid/cas-user/8904bfe249d56466eaf2b60d566618b8baaa3d2c.camel%40uvic.ca
>>> 
>>> .
>>>
>> --
>> - Website: https://apereo.github.io/cas
>> - Gitter Chatroom: https://gitter.im/apereo/cas
>> - List Guidelines: https://goo.gl/1VRrw7
>> - Contributions: https://goo.gl/mh7qDG
>> ---
>> You received this message because you are subscribed to the Google 

Re: [cas-user] cas-management application

2020-07-07 Thread Stef
Hi Bryan,
If you want to completely disable version control you can do this in
build.gradle:

bootWar {
entryCompression = ZipEntryCompression.STORED
overlays {
//
https://docs.freefair.io/gradle-plugins/current/reference/#_io_freefair_war_overlay
// Note: The "excludes" property is only for files in the war
dependency.
// If a jar is excluded from the war, it could be brought back into
the final war as a dependency
// of non-war dependencies. Those should be excluded via normal
gradle dependency exclusions.
cas {
from
"org.apereo.cas:cas-mgmt-webapp${project.appServer}:${casMgmtServerVersion}@war
"
provided = false
excludes = ["**/cas-mgmt-config-version-control*.jar",
"**/cas-mgmt-config-delegated*.jar", "**/HikariCP-java7-2.4.13.jar"]
}
}

}


Then the only thing you need for services is

cas.serviceRegistry.json.location=file:/etc/cas/services


Stéphane

Le lun. 6 juil. 2020 à 22:47, Bryan Wooten  a écrit :

> Thank you Ray. This helps.
>
> I see you are very active/helpful on this list...
>
> Perhaps one day I will return the favor.
>
> -Bryan
>
> University of Utah.
>
> On Mon, Jul 6, 2020 at 1:04 PM Ray Bon  wrote:
>
>> Bryan,
>>
>> I am just looking into cas management after a bit of a break from my
>> first frustrating attempt. My impression is that cas management is trying
>> to leverage the cas packages. The version of cas management must be the
>> same as a source of cas packages (I am working with 6.1.4-SNAPSHOT), but
>> does not have to be the same as the deployed cas ( it ca be older for
>> sure). This also means that the properties will be the same as those for
>> cas.
>> I have not tried turning off version control for the services. First time
>> I tried, it was problematic. For the extra step of confirming changes to a
>> service, it is probably not worth the effort. Just create a writable
>> directory (or make the default writable) for the git repo and be done with
>> it.
>> We store our services in ldap (so no file sync), but I am not that far
>> along in my config, maybe later this week or next.
>>
>> Ray
>>
>> On Mon, 2020-07-06 at 11:52 -0600, Bryan Wooten wrote:
>>
>> I was wondering if any of you fine folks could help me.
>>
>> I am trying to get cas-management application (6.2) with a Cas 6.1.6
>> server. (I can change the cas-management version if needed.
>>
>> Anyway I am having trouble understanding the docs and and
>> management.properties settings.
>>
>> I am simply trying to manage a 1000 json file /etc/cas.config/services
>> directory.
>>
>> We don't need/want version control at this time or any file sync.
>>
>> At startup we get errors like this:
>>
>> Origin: "mgmt.enableVersionControl" from property source
>> "bootstrapProperties"
>> Reason: The elements
>> [mgmt.enabledelegatedmgmt,mgmt.enableversioncontrol,mgmt.servicesrepo,mgmt.syncscript,mgmt.userrep
>> osdir] were left unbound.
>>
>> For example, what is mgmt.userrep?
>>
>> If someone could share the management properties file that would be great.
>>
>> -Bryan
>>
>> University of Utah
>>
>> --
>>
>> Ray Bon
>> Programmer Analyst
>> Development Services, University Systems
>> 2507218831 | CLE 019 | r...@uvic.ca
>>
>> I respectfully acknowledge that my place of work is located within the
>> ancestral, traditional and unceded territory of the Songhees, Esquimalt and
>> WSÁNEĆ Nations.
>>
>> --
>> - Website: https://apereo.github.io/cas
>> - Gitter Chatroom: https://gitter.im/apereo/cas
>> - List Guidelines: https://goo.gl/1VRrw7
>> - Contributions: https://goo.gl/mh7qDG
>> ---
>> 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 cas-user+unsubscr...@apereo.org.
>> To view this discussion on the web visit
>> https://groups.google.com/a/apereo.org/d/msgid/cas-user/8904bfe249d56466eaf2b60d566618b8baaa3d2c.camel%40uvic.ca
>> 
>> .
>>
> --
> - Website: https://apereo.github.io/cas
> - Gitter Chatroom: https://gitter.im/apereo/cas
> - List Guidelines: https://goo.gl/1VRrw7
> - Contributions: https://goo.gl/mh7qDG
> ---
> 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 cas-user+unsubscr...@apereo.org.
> To view this discussion on the web visit
> https://groups.google.com/a/apereo.org/d/msgid/cas-user/CAG9x2GVTa5zGEn3ghBBJ5BXU2SOU8p_F3upCQRepyEwv30KmWA%40mail.gmail.com
> 
> .
>

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: 

Re: [cas-user] cas-management application

2020-07-06 Thread Bryan Wooten
Thank you Ray. This helps.

I see you are very active/helpful on this list...

Perhaps one day I will return the favor.

-Bryan

University of Utah.

On Mon, Jul 6, 2020 at 1:04 PM Ray Bon  wrote:

> Bryan,
>
> I am just looking into cas management after a bit of a break from my first
> frustrating attempt. My impression is that cas management is trying to
> leverage the cas packages. The version of cas management must be the same
> as a source of cas packages (I am working with 6.1.4-SNAPSHOT), but does
> not have to be the same as the deployed cas ( it ca be older for sure).
> This also means that the properties will be the same as those for cas.
> I have not tried turning off version control for the services. First time
> I tried, it was problematic. For the extra step of confirming changes to a
> service, it is probably not worth the effort. Just create a writable
> directory (or make the default writable) for the git repo and be done with
> it.
> We store our services in ldap (so no file sync), but I am not that far
> along in my config, maybe later this week or next.
>
> Ray
>
> On Mon, 2020-07-06 at 11:52 -0600, Bryan Wooten wrote:
>
> I was wondering if any of you fine folks could help me.
>
> I am trying to get cas-management application (6.2) with a Cas 6.1.6
> server. (I can change the cas-management version if needed.
>
> Anyway I am having trouble understanding the docs and and
> management.properties settings.
>
> I am simply trying to manage a 1000 json file /etc/cas.config/services
> directory.
>
> We don't need/want version control at this time or any file sync.
>
> At startup we get errors like this:
>
> Origin: "mgmt.enableVersionControl" from property source
> "bootstrapProperties"
> Reason: The elements
> [mgmt.enabledelegatedmgmt,mgmt.enableversioncontrol,mgmt.servicesrepo,mgmt.syncscript,mgmt.userrep
> osdir] were left unbound.
>
> For example, what is mgmt.userrep?
>
> If someone could share the management properties file that would be great.
>
> -Bryan
>
> University of Utah
>
> --
>
> Ray Bon
> Programmer Analyst
> Development Services, University Systems
> 2507218831 | CLE 019 | r...@uvic.ca
>
> I respectfully acknowledge that my place of work is located within the
> ancestral, traditional and unceded territory of the Songhees, Esquimalt and
> WSÁNEĆ Nations.
>
> --
> - Website: https://apereo.github.io/cas
> - Gitter Chatroom: https://gitter.im/apereo/cas
> - List Guidelines: https://goo.gl/1VRrw7
> - Contributions: https://goo.gl/mh7qDG
> ---
> 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 cas-user+unsubscr...@apereo.org.
> To view this discussion on the web visit
> https://groups.google.com/a/apereo.org/d/msgid/cas-user/8904bfe249d56466eaf2b60d566618b8baaa3d2c.camel%40uvic.ca
> 
> .
>

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
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 cas-user+unsubscr...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/CAG9x2GVTa5zGEn3ghBBJ5BXU2SOU8p_F3upCQRepyEwv30KmWA%40mail.gmail.com.


Re: [cas-user] cas-management application

2020-07-06 Thread Ray Bon
Bryan,

I am just looking into cas management after a bit of a break from my first 
frustrating attempt. My impression is that cas management is trying to leverage 
the cas packages. The version of cas management must be the same as a source of 
cas packages (I am working with 6.1.4-SNAPSHOT), but does not have to be the 
same as the deployed cas ( it ca be older for sure). This also means that the 
properties will be the same as those for cas.
I have not tried turning off version control for the services. First time I 
tried, it was problematic. For the extra step of confirming changes to a 
service, it is probably not worth the effort. Just create a writable directory 
(or make the default writable) for the git repo and be done with it.
We store our services in ldap (so no file sync), but I am not that far along in 
my config, maybe later this week or next.

Ray

On Mon, 2020-07-06 at 11:52 -0600, Bryan Wooten wrote:
I was wondering if any of you fine folks could help me.

I am trying to get cas-management application (6.2) with a Cas 6.1.6 server. (I 
can change the cas-management version if needed.

Anyway I am having trouble understanding the docs and and management.properties 
settings.

I am simply trying to manage a 1000 json file /etc/cas.config/services 
directory.

We don't need/want version control at this time or any file sync.

At startup we get errors like this:

Origin: "mgmt.enableVersionControl" from property source "bootstrapProperties"
Reason: The elements 
[mgmt.enabledelegatedmgmt,mgmt.enableversioncontrol,mgmt.servicesrepo,mgmt.syncscript,mgmt.userrep
osdir] were left unbound.

For example, what is mgmt.userrep?

If someone could share the management properties file that would be great.

-Bryan

University of Utah

--

Ray Bon
Programmer Analyst
Development Services, University Systems
2507218831 | CLE 019 | r...@uvic.ca

I respectfully acknowledge that my place of work is located within the 
ancestral, traditional and unceded territory of the Songhees, Esquimalt and 
WSÁNEĆ Nations.

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
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 cas-user+unsubscr...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/8904bfe249d56466eaf2b60d566618b8baaa3d2c.camel%40uvic.ca.


[cas-user] cas-management application

2020-07-06 Thread Bryan Wooten
I was wondering if any of you fine folks could help me.

I am trying to get cas-management application (6.2) with a Cas 6.1.6
server. (I can change the cas-management version if needed.

Anyway I am having trouble understanding the docs and and
management.properties settings.

I am simply trying to manage a 1000 json file /etc/cas.config/services
directory.

We don't need/want version control at this time or any file sync.

At startup we get errors like this:

Origin: "mgmt.enableVersionControl" from property source
"bootstrapProperties"
Reason: The elements
[mgmt.enabledelegatedmgmt,mgmt.enableversioncontrol,mgmt.servicesrepo,mgmt.syncscript,mgmt.userrep
osdir] were left unbound.

For example, what is mgmt.userrep?

If someone could share the management properties file that would be great.

-Bryan

University of Utah

-- 
- Website: https://apereo.github.io/cas
- Gitter Chatroom: https://gitter.im/apereo/cas
- List Guidelines: https://goo.gl/1VRrw7
- Contributions: https://goo.gl/mh7qDG
--- 
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 cas-user+unsubscr...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/CAG9x2GWgxUQgkoH1TiinTjapiL0h5qn_sXY8FnWK5S4EuFYbRA%40mail.gmail.com.


Re: [cas-user] CAS Management application admins via attribute return

2017-06-08 Thread Richard Frovarp
It's working now as I have it below, but without the quotes. Must have 
had a bad restart or a session that persisted. Sorry for the noise.


On 06/07/2017 05:00 PM, Richard Frovarp wrote:
I'm trying to get the CAS Management application in 5.1.0 to work with 
attribute return from the CAS authentication.


My user-details.properties is empty, if it doesn't exist I get an error.

cas.mgmt.adminRoles[0]="CN=Some,CN=AD-Group,DC=ad,DC=example,DC=com"
cas.mgmt.authzAttributes[0]=memberOf

I have tried with and without the array notation. I have tried with 
and without quotes surrounding the AD group name. I can see in another 
application that the memberOf trait is coming out of CAS correctly, 
and the group listed as the role is in there and is correct.


I'm not sure what I'm missing.

Thanks,

Richard



--
- 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 cas-user+unsubscr...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/3b031dfb-7a9a-7bc5-68f4-1172ab43db01%40ndsu.edu.


[cas-user] CAS Management application admins via attribute return

2017-06-07 Thread Richard Frovarp
I'm trying to get the CAS Management application in 5.1.0 to work with 
attribute return from the CAS authentication.


My user-details.properties is empty, if it doesn't exist I get an error.

cas.mgmt.adminRoles[0]="CN=Some,CN=AD-Group,DC=ad,DC=example,DC=com"
cas.mgmt.authzAttributes[0]=memberOf

I have tried with and without the array notation. I have tried with and 
without quotes surrounding the AD group name. I can see in another 
application that the memberOf trait is coming out of CAS correctly, and 
the group listed as the role is in there and is correct.


I'm not sure what I'm missing.

Thanks,

Richard

--
- 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 cas-user+unsubscr...@apereo.org.
To view this discussion on the web visit 
https://groups.google.com/a/apereo.org/d/msgid/cas-user/41c2b5b9-c659-32be-13c7-23441c2a713a%40ndsu.edu.