InnoTecSol >ICS >ICS Version: 0.7.2425 Documentation >Start and Stop
ICS Version: 0.7.2425
Start and Stop
You can start and stop the internet communication server as described below:

ICS can be started within a console for test purposes.


ics console ICSWIN /cfg "C:\Program Files\ics\config\ics.xml" /trc "C:\ProgramData\ics\log\ics-trace.log"
		

The execution can be interrupted by CTRL+C.

Installation

For standard operation ICS can be installed as windows service.


ics install ICSSERVICE /cfg "C:\Program Files\ics\config\ics.xml" /trc "C:\ProgramData\ics\log\ics-trace.log"
		

This will install ics as service with the display name ICSSERVICE with the windows service manager.

Start

In order to start the service you can execute the following command.


ics start ICSSERVICE 
		

Stop

In order to stop the service you can execute the following command.


ics stop ICSSERVICE 
		

Remove

In order to remove the service you can execute the following command.


ics remove ICSSERVICE 
		

ICS can be started within a console for test purposes.


ics console ICSUX -cfg "/etc/ics/ics.xml" -trc "/var/log/ics/ics-trace.log"
		

The execution can be interrupted by CTRL+C.

By using the rcscript provided with the installation you can establish ICS as unix service which can be started


cd /etc/rc.d/
./ics start
		

or stopped by


cd /etc/rc.d/
./ics stop