License Servlet

Windows installers deployment

Running the License Server as a windows service

Modify the oXygenHTTPLicenseServer.vmoptions file and add on a new line the following content:

    log4j2.formatMsgNoLookups=true
  

Running the License Server using the licenseServer.bat script:

    %OXYGEN_JAVA% %CMDLINE%
  

with

    %OXYGEN_JAVA% -Dlog4j2.formatMsgNoLookups=true %CMDLINE%
  

All platforms distribution

In the licenseServer.sh script modify the following lines:

    # Start the server.
    exec "${OXYGEN_JAVA}" ${CMDLINE}
  

should become:

    # Start the server.
    exec "${OXYGEN_JAVA}" -Dlog4j2.formatMsgNoLookups=true ${CMDLINE}
  

In the licenseServer.bat script replace the line containing

    %OXYGEN_JAVA% %CMDLINE%
  

with

    %OXYGEN_JAVA% -Dlog4j2.formatMsgNoLookups=true %CMDLINE%
  

Web Application Archive

Modify the server running the application to pass the log4j2.formatMsgNoLookups=true system property.

Important: After making these changes restart the License Server for them to take action.