Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revisionBoth sides next revision
75:reporting-troubleshooting [2020/09/23 14:50] – created cgl75:reporting-troubleshooting [2020/09/23 14:56] cgl
Line 5: Line 5:
 1.) Add the following property to config.xml with an url of the Stages server (host name or ip address) which is accessible for internal request from the Stages server to itself: 1.) Add the following property to config.xml with an url of the Stages server (host name or ip address) which is accessible for internal request from the Stages server to itself:
  
-<code><property name="metrics.serverAddress" value="http://localhost"/> +<code> 
 +<property name="metrics.serverAddress" value="http://localhost"/>
  
 </code> </code>
Line 12: Line 12:
 2.) Configure the proxyName and proxyPort of your proxy server for the internal connector in tomcat/conf/server.xml as shown in the following example: 2.) Configure the proxyName and proxyPort of your proxy server for the internal connector in tomcat/conf/server.xml as shown in the following example:
  
-<code><Connector port="80"+<code> 
 +<Connector port="80"
 proxyName="myproxy.mydomain.com" proxyName="myproxy.mydomain.com"
 proxyPort="443" proxyPort="443"
 ..../> ..../>
  
 +</code>
  
-</code>