User wants to know how frequently Information Centric Tagging (ICT) client connect to Information Centric Tagging administration console.
By Default, the Information Centric Tagging Endpoint Client (ICT) will check for configuration every 30 minutes.
This means that each client will connect to the server to get an updated configuration every 30 minutes.
From ICT Client version 14.6 on, the Administrator can set a different value for this so the clients will check for configuration in custom intervals.
For this, the Administrator will need to adjust the following 2 values (in minutes) in the configuration database:
The above values are the default ones. They mean that each client will try to get an updated configuration every 25-35 minutes (a random number between this two, generated on the endpoint).
The minimum values for these parameters are, respectively:
Step-by-step guide to change the Update frequency values
Run the following command to change those values (adjust the ICT_CONFIG and the [Value] to match your environment):
USE [ICT_CONFIG]
GO
UPDATE [dbo].[Configuration]
SET [Value] = '2'
WHERE [Variable] = 'RWSpaUpdateFrequency'
GO
UPDATE [dbo].[Configuration]
SET [Value] = '1'
WHERE [Variable] = 'RWSpaUpdateWindow'
GO
|