Skip to main content

Apache Tomcat - Cantara Agent Configuration

The file cantara-server.xml (5.0.2) or cantara-server.json (5.0.3+) will be created automatically the first time that agent starts.

You must specify:

-Tenant ID (tenantId)
-API Key (apiKey)
-Protocol (HTTP or HTTPS)
-Hostname
-Port
-Context (For cloud installation this will be cantara, for standalone installation this will be the context of the worker's load balancer)

cantara-server.xml Example

XML
<?xml version="1.0" encoding="UTF-8"?>
<client:Client xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning"
 xmlns:client="http://rinami.com/cantara/schema/client"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://rinami.com/cantara/schema/client file:/C:/Development/Rinami/cantara/cantara-components/src/main/resources/xsd/cantara-client-4.2.xsd">
    <client:ServiceDefinition applicationName="Cantara Agent" tenantId="100010" apiKey="123" protocol="HTTP" hostname="localhost" port="8086" context="cantara"
         storeCredentials="false" timeout="0" userConfigDisabled="false"/>    
</client:Client>

cantara-server.json Example

JS
{
  "serviceDefinition" : {
    "applicationName" : "CantaraAgent",
    "protocol" : "HTTP",
    "hostname" : "localhost",
    "port" : 8086,
    "context" : "cantara",
    "storeCredentials" : false,
    "timeout" : 0,
    "userConfigDisabled" : false,
    "tenantId" : 100010,
    "apiKey" : "123",
    "proxyPort" : 0,
    "endPoint" : ""
  }
}


JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.