Difference between revisions of "Systemd for voipmonitor service management"

From VoIPmonitor.org
Jump to navigation Jump to search
Line 7: Line 7:
 
  After=network.target
 
  After=network.target
 
  After=mysql.service
 
  After=mysql.service
 +
 
  [Service]
 
  [Service]
 +
Restart=always
 
  Type=forking
 
  Type=forking
 
  ExecStart=/etc/init.d/voipmonitor start
 
  ExecStart=/etc/init.d/voipmonitor start

Revision as of 01:53, 5 January 2017

This is valid only for system that use systemd as manager for services. (After following this you will be able to use systemctl or service commands also in your OS with systemd)

Create file /etc/systemd/system/voipmonitor.service

[Unit]
Description=VOIPmonitor tool for VOIP monitoring
After=syslog.target
After=network.target
After=mysql.service
[Service]
Restart=always
Type=forking
ExecStart=/etc/init.d/voipmonitor start
ExecStop=/etc/init.d/voipmonitor stop
#Give a reasonable amount of time for the server to start up/shut down
TimeoutStartSec=0
TimeoutStopSec=180
#Place temp files in a secure directory, not /tmp?
PrivateTmp=false
[Install]
WantedBy=multi-user.target

NOTICE: line 'After=mysql.service' gives a sense only if your mysql is installed locally.