Cicode Programming Reference > Cicode Function Categories > Server Functions Introduction > ServerRestart

ServerRestart

Restart any specific alarm, report, trend or I/O server from any Cicode node in system, without affecting other server processes running on the same machine.

For this function to be successful you need to set the [Shutdown]NetworkStart parameter in the Citect.ini file to "1".

Syntax

INT error = ServerRestart (STRING sServerName, STRING sCluster = "")

sServerName:

The name of the server to restart

sCluster:

The cluster the server belongs to. This parameter is optional. If sCluster is not specified the current system cluster is used.

Return Value

0 (zero) if successful, otherwise one of the following error codes is returned:

256 - General software error

292 - Invalid function

403 - Cluster not found

418 - No server of type on cluster

512 - Time out error

513 - Access denied error

See Also

Related Functions

ServerGetProperty, ServerInfo, ServerInfoEx, ServerIsOnline, ServerReload

Example

ServerRestart("AlarmServer1", "Cluster1");

See Also