Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The information in this page can be used to help troubleshoot LDAP issues.

Debugging

...

To enable debug logging, which includes the LDAP realm, edit the service log4j2 configuration file at /app/ui/MonTier-UI/lib/log4j2.xml or /app/appadmin/MonTier-AppAdmin/lib/log4j2.xml.

Change the "org.montier" logger to level="debug" as describe below:

Code Block
languagexml
themeRDark
<Logger name="org.montier" level="debug" additivity="false">
	<AppenderRef ref="MONTIER"/>
	<AppenderRef ref="CATALINA"/>
</Logger>


To enable trace logging of custom roles, edit the UI service log4j configuration file : at /app/ui/MonTier-UI/lib/log4j2.xml.

Change the "MNTR_CUSTOM_ROLES" logger to level="trace" as describe below:

...