Location of the license file (tia® Core)
tia Core® products require to find the license file at startup in the preconfigured directory.
For container deployments, this is
/application/config/license
in the container file system. There is little to no need to change this. However, it is possible using setting the parametertia.license.path
.For WAR-deployments (tia Core Content Server only), there are two options:
in the
../META-INF/context.xml
of the deployment itself. When configuration parameters are updated, this file is overwritten. This is the recommended configuration location for WAR-deployments.the Tomcat-wide
context.xml
: applies to all deployments on this Tomcat instance, even when Tomcat is updated and service-configuration is rewritten.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Context>
<Context>
<Parameter
name="tia.license.path"
value="<absolute path>"
override="true" />
</Context>
For general information about tia application-wide configuration see Application wide settings .