Configuring the administrative console
About this task
After you have deployed the PingDirectory administrative console, you can configure it.
Steps
-
Disable the embedded administrative console using
dsconfigor the administrative console to configure connection handlers:Choose from:
-
To use
dsconfig, rundsconfig set-connection-handler-prop:dsconfig set-connection-handler-prop \ --handler-name "<HTTPS Connection Handler>" \ --reset web-application-extensionReplace <HTTPS Connection Handler> with the name of the connection handler hosting the administrative console.
-
To use the administrative console, open the console:
-
On the Configuration page, go to Connection Handlers.
-
In the Connection Handlers list, select the HTTP or HTTPS connection handler that is hosting the administrative console.
-
Go to Web Application Extension and click the arrows to move Console from the Selected column on the right to the Available column on the left.
-
-
-
To finalize your changes, restart the HTTPS Connection Handler using
dsconfig:Example:
dsconfig set-connection-handler-prop \ --handler-name "<HTTPS Connection Handler>" \ --set enabled:false dsconfig set-connection-handler-prop \ --handler-name "<HTTPS Connection Handler>" \ --set enabled:true -
Configure the administrative console’s
application.ymlfile.You can configure the standalone PingDirectory server administrative console by modifying the
/tmp/Console/WEB-INF/classes/application.ymlfile. To see the different configuration settings listed in the defaultapplication.ymlfile included with the administrative console and what they do, expand the following table.Configuration settings
Setting Description spring.*You can find information about these properties in the Spring API docs.
You should not modify them.
management.server.base-pathControls the prefix of the Spring Boot Actuator endpoints of the console application.
You should not modify this setting.
logging.level.*Controls the severity level of messages logged about these packages.
log.consoleIf this is set to
true, the console logs messages to a file.log.fileIf logging is enabled, this specifies the file that the console will log to.
PingData.SSO.OIDC.enabledIf this is set to
true, the console attempts to use OpenID Connect (OIDC) single sign-on (SSO) to bind to the managed server.If
false, the console asks for a username and password.PingData.SSO.OIDC.issuer-uriThe issuer URI to the OIDC provider.
PingData.SSO.OIDC.client-idThe client ID used with the OIDC provider.
PingData.SSO.OIDC.client-secretThe client secret used with the OIDC provider.
PingData.SSO.OIDC.trust-store-fileThe file path to the trust store used when communicating with the OIDC provider.
PingData.SSO.OIDC.trust-store-typeThe type of trust store specified by
PingData.SSO.OIDC.trust-store-file.PingData.SSO.OIDC.trust-store-pinSpecifies the password used with the trust store specified by
PingData.SSO.OIDC.trust-store-file.PingData.SSO.OIDC.trust-store-pin-environment-variableSpecifies the environment variable containing the password used with the trust store specified by
PingData.SSO.OIDC.trust-store-file.PingData.SSO.OIDC.strict-hostname-verificationIf this is set to
true, the console requires a matching host name on the OIDC provider certificate.PingData.SSO.OIDC.trust-allIf this is set to
true, the console accepts any OIDC provider certificate.PingData.SSO.OIDC.username-attributesThe LDAP attribute containing the username of the user the console is logging in as when using SSO.
login.hide-serverIf this is set to
true, the 'server' field is hidden on the sign on page.ldap.serverAuto-populates the 'server' field on the sign-on page.
If
login.hide-server=true, this value determines which directory server the console tries to bind to.ldap.init-userAuto-populates the
userfield on the sign-on page.ldap.init-passwordAuto-populates the
passwordfield on the sign-on page.ldap.trust-store-fileThe file path to the trust store used when binding to the directory server.
ldap.trust-store-typeSpecifies the type of trust store specified by
trust-store-file.ldap.trust-store-pinSpecifies the password used with the trust store specified by
trust-store-file.ldap.trust-store-pin-environment-variableSpecifies the environment variable containing the password used with the trust store specified by
trust-store-file.ldap.file-servlet-nameSpecifies the name of the file servlet on the managed directory server to use when fetching generated
collect-support-data(CSD) or server profiles.ldap.csd-task-enabledIf this is set to
true, the console has a button that has the managed directory server run acollect-support-datatask.ldap.csd-destination-folderThe file path to the folder where the managed directory server stores generated CSD files after running the
collect-support-datatask.ldap.profile-destination-folderThe file path to the folder where the managed directory server stores generated server profiles after running the
generate-server-profiletask.Do not change this property.
branding.custom-folderThe file path to the folder that holds custom
branding.properties,branding.css, andfavicon.icofiles.If empty, default Ping Identity branding is used instead.
configuration.complexityDetermines the maximum complexity level for shown configuration objects.
The possible values are
basic,standard,advanced, andexpert.server.sessionTimeoutThe amount of time a web session can remain idle before the user must sign on again. The time is set in seconds unless you use a time interval (h for hours or m for minutes). If not specified, the default is 24 hours.
After modifying the
application.ymlfile, you must restart the console for your changes to take effect. -
Select servers to manage in the administrative console:
-
To use the
application.ymlfile to select a server for the administrative console to manage:-
Set the
ldap.serverproperty to the address of the LDAP server to bind to. -
Restart the console using the following command:
dsconfig set-connection-handler-prop \ --handler-name "<HTTPS Connection Handler>" \ --set enabled:false dsconfig set-connection-handler-prop \ --handler-name "<HTTPS Connection Handler>" \ --set enabled:true
-
-
To switch between managed servers in a single topology while signed on to the administrative console, in the Servers list, select the server that you want to manage.
-
To select a server when SSO is not enabled and the
login.hide-serverproperty inapplication.ymlisfalse:-
If you are signed on to the console, sign off of your current session.
-
Change the Server field value on the console sign-on page to the address of the LDAP server you want to manage.
-
-
To select a server when SSO is enabled, enter the console URL with the
ldap-hostnameandldaps-portquery parameters specified when accessing the console:https://<hostname>:<port>/console/login?ldap-hostname=<ldap.host>&ldaps-port=<ldaps-port>Example:
In the following example URL, <hostname> is
localhost, <port> is443, <ldap.host> isldap.host, and <ldaps-port> is636:https://localhost:443/console/login?ldap-hostname=ldap.host&ldaps-port=636
-