You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently testing your documentation to install Grouper with Swarm.
During the "Populate Database" step I came across this error :
$ docker container run -it --rm \
--mount type=bind,src=$(pwd)/configs-and-secrets/grouper.hibernate.properties,dst=/run/secrets/grouper_grouper.hibernate.properties \
--mount type=bind,src=$(pwd)/configs-and-secrets/subject.properties,dst=/run/secrets/grouper_subject.properties \
--network internal \
localhost:5000/organization/grouper-base gsh -registry -check -runscript -noprompt
...
grouper-api;grouper_error.log;;;2021-06-25 14:59:15,418: [main] ERROR LdapSourceAdapter.getLdapResultsHelper(582) - - Ldap Exception: Missing property subjectApi.source.ldap.param.ldapServerId.value in subject.properties. The value of this property should point to your LDAP configuration in the grouper-loader.properties file. e.g. if your grouper-loader.properties has ldap.personLdap.url, then the value of this property would be personLdap.
I had to apply the following changes:
create a configs-and-secrets/grouper-loader.properties as follows :
Hi,
I am currently testing your documentation to install Grouper with Swarm.
During the "Populate Database" step I came across this error :
I had to apply the following changes:
2.complete configs-and-secrets/subject.properties with:
subjectApi.source.ldap.param.ldapServerId.value = personLdap
3. add following arguments to
docker container run
:--mount type=bind,src=$(pwd)/configs-and-secrets/grouper-loader.properties,dst=/run/secrets/grouper_grouper-loader.properties
Maybe worth completing your documentation+config
The text was updated successfully, but these errors were encountered: