PLC Service

From PlcWiki

(Difference between revisions)
Jump to: navigation, search
(Commented configuration file example)
(Service installation)
Line 23: Line 23:
  service plc_example condrestart
  service plc_example condrestart
  service plc_example status
  service plc_example status
 +
 +
Additional specific commands:
 +
 +
service plc_example condstart    # Be silent if the service is already running
 +
service plc_example startalone  # Start without starting possible required services
=Service uninstallation=
=Service uninstallation=

Revision as of 08:27, 21 January 2011

PLC Service is a unified way of running tasks in the background.

Any script or program can be run as a system service.


Contents

Service installation

/usr/local/plc/bin/plc_service_install [-s|--start] <service name>

This command will install (and with -s option even start) a new system service. If the program has the same name as the service, is in /usr/local/plc/bin/ directory and doesn't take any command line options, no other configuration is needed.

Also if a file with name /usr/local/plc/etc/<service name>_<WPID>.cfg or /usr/local/plc/etc/<service name>.cfg exists, it is passed as a parameter to the program by default and no configuration is needed, supposed this is the only option that the program needs.

If the service name is plc, it will install a superservice that will reparent all current PLC services. Such services are launched on boot as plc subservices and are started when the plc superservice is started (and stopped when the plc superservice is stopped) unless it has NOAUTOSTART=yes in its configuration.

All subservices are required to have appropriate configuration file in /usr/local/plc/etc/service/. This configuration file can be empty if the default behaviour is sufficient. For old-style PLC services, an empty configuration file is created upon first start of plc superservice as a part of migration process.

I order to start/stop/query PLC service, use standard SysV commands:

service plc_example start
service plc_example stop
service plc_example restart
service plc_example condrestart
service plc_example status

Additional specific commands:

service plc_example condstart    # Be silent if the service is already running
service plc_example startalone   # Start without starting possible required services

Service uninstallation

/usr/local/plc/bin/plc_service_uninstall [-n|--nostop] <service name>

This command stops (unless -n option is given) and uninstalls given PLC service.

Uninstalling the plc superservice will cancel starting of all PLC services on boot.

Uninstalling a service when the plc superservice is active will either delete its configuration file in /usr/local/plc/etc/service/ directory (if its empty) or rename it by appending an extension .uninstalled to avoid auto-installing upon next start of the plc superservice.

Service list

/usr/local/plc/bin/plc_service_list [-s]

List all installed PLC services. -s option also shows their status.

Status colors have their meaning:

File:plc_service_list.png

  • red: The service is stopped and scheduled to start on boot
  • green: The service is running and scheduled to start on boot
  • blue: The service is stopped and not scheduled to start on boot
  • yellow: The service is running and not scheduled to start on boot

Service configuration

Service configuration file has to be named like this (sorted in the order of precedence):

  1. /usr/local/plc/etc/service/<name> (also the only mandatory location if the plc superservice is used)
  2. /usr/local/plc/etc/<name>.service.cfg
  3. /usr/local/plc/etc/<name>

Contents of multiple configuration files are merged together, however it is recommended to use only one file (preferably /usr/local/plc/etc/service/<name>)

Commented configuration file example

# Not necessary if the program name is the same as the service name
PROGRAM="/usr/local/plc/bin/blah"

# Start again if the process gets killed by accident or crashes.
# Set to "yes" by default.
KEEPRUNNING=yes

# Command line arguments
OPTIONS="-v"

# Default stdout log file is named /usr/local/plc/log/<name>.service.log"
#LOG=/tmp/logfile.log

# Default error log file is named /usr/local/plc/log/<name>.service.err.log"
#ERRORLOG=/tmp/errlogfile.log

# If set, standard output and standard error output are redirected to the same file ( $LOG ).
# Set to "yes" by default.
#COMMONLOG=no

# If set, the plc superservice won't start this service when started (however it will stop it when stopped)
# Set to "no" by default.
#NOAUTOSTART=yes

# List of services that have to be started _before_ this one
# Use 'service <name> startalone' to ignore requires
REQUIRES:
      another_service_1
      another_service_2
      another_service_3

# Any other variables set here will be accessible from the program

RUNFASTER=yes
DONTCRASH=yes
Personal tools