Server Configuration

Server Configuration

{{include.server_type}} Configuration #

Connect {{include.server_type}} to Solr for Operational Reporting #

To connect {{include.server_type}} to Operational Reporting, SicsOperationalReportingMode and SicsOperationalReportingUrl {{include.param_type}} parameter must be configured in WEB-INF/web.xml.

<{{include.param_type}}-param>
	<description>
		SICS Operational Reporting Mode
		Defaults to disabled
		
      	disable - Disable logging to Operational Reporting
      	cloud - Apache Solr Cloud Mode
      	server - Apache Solr Server Mode
	</description>
	<param-name>SicsOperationalReportingMode</param-name>
	<param-value>cloud</param-value>
</{{include.param_type}}-param>

<{{include.param_type}}-param>
	<description>
		SICS Operational Reporting URL
		
		This setting is required to connect SICS to SICS Operational Reporting.
		
		If not set, SICS is not able to configure or log
		any information to SICS Operational Reporting.
	</description>

	<param-name>SicsOperationalReportingUrl</param-name>
	<param-value>localhost:2181/solr</param-value>
</{{include.param_type}}-param>

Upload Walkback files to Operational Reporting #

To upload Walkback files to Solr for Operational Reporting, {{include.server_type}} must be connected to Solr for Operational Reporting and the WalkbackMode {{include.param_type}} parameter value must be set to 2, 3 or 4 in WEB-INF/web.xml.

<{{include.param_type}}-param>
	<description>
        In the event of an unexpected error in SICS,
        the detailed information about the problem is written to a walkback file.
        
        The walkback file could be stored in a folder and/or uploaded to Operational Reporting.
        
        0 - Disabled
        1 - Folder Mode (default)
        2 - Operational Reporting Mode
        3 - Operational Reporting Mode and Folder Mode
        4 - Operational Reporting Mode and Folder Mode on failure    
	</description>

	<param-name>WalkbackMode</param-name>
	<param-value>3</param-value>
</{{include.param_type}}-param>