Systemd for voipmonitor service management: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 9: | Line 9: | ||
[Service] | [Service] | ||
# Restart=always | |||
Type=forking | Type=forking | ||
ExecStart=/etc/init.d/voipmonitor start | ExecStart=/etc/init.d/voipmonitor start |
Revision as of 11:08, 13 July 2020
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.