License Server uses the settings in the PSTSecConfig.xml file, located in the <LS_INSTALL>/data/conf/ directory, to authenticate against the User Administration module (pstsec). The default settings should work for most users.
If User Administration is deployed on non-default ports, edit the following elements:
- Set
<host>8443</host>to the port where User Administration is deployed. - Set
<protocol>https</protocol>as needed.
<?xml version="1.0" encoding="UTF-8"?>
<pstsec-config>
<password-required>true</password-required>
<remote-authentication>
<port>8443</port>
<!-- http or https -->
<protocol>https</protocol>
License Server makes a user request over HTTP(S) to User Administration when authenticating remotely. By default, License Server makes the request as the "admin" user, but you can configure License Server to authenticate with a different user by changing the <user>admin</user> element. The user you want to authenticate with should have administrative privileges (see Basic User Management).
<!--
Option <user> is the user account License Server will use for communication with the
remote authentication server (pstsec). The default value is 'admin'.
-->
<user>admin</user>
</remote-authentication>