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%
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%
This website was created & generated with <oXygen/>®XML Editor
