Search found 3 matches
- Fri Apr 01, 2016 12:06 pm
- Forum: Open Source Nagios Projects
- Topic: service nagios start failed
- Replies: 13
- Views: 63988
Re: service nagios start failed
You need to make a script in the following directory: /etc/systemd/system/ For example, you might first use vim to create the file: vim /etc/systemd/system/nagios.service Insert the following text into that service: [Unit] Description=Nagios Core Monitoring Daemon After=network.target [Service] Use...
- Fri Apr 01, 2016 10:17 am
- Forum: Open Source Nagios Projects
- Topic: service nagios start failed
- Replies: 13
- Views: 63988
Re: service nagios start failed
I'm trying to create the script jdalrymple said he had reasonable success with.hsmith wrote:What exactly are you trying to do?
- Thu Mar 31, 2016 3:40 pm
- Forum: Open Source Nagios Projects
- Topic: service nagios start failed
- Replies: 13
- Views: 63988
Re: service nagios start failed
I've had reasonable success with the following systemd script. It still calls the old init script so place (move) it in the location specified: [Unit] Description=Nagios Core Monitoring Daemon After=network.target [Service] User=nagios Group=nagios Type=forking ExecStart=/usr/lib/systemd/scripts/na...