Hi Everyone,
What is right order to start and stop Nagios xi Services? Is below order correct?
- SERVICES_START_ORDER=( "mysqld" "nagios" "npcd" "httpd" "snmptt" "crond" )
- SERVICES_STOP_ORDER=( "crond" "snmptt" "httpd" "npcd" "nagios" "mysqld" )
With Regards,
SB
[Query] What is the right order to start and stop Nagios xi Services?
-
- Posts: 10
- Joined: Sun Mar 29, 2020 9:34 pm
-
- Posts: 318
- Joined: Mon Apr 06, 2020 2:49 pm
Re: [Query] What is the right order to start and stop Nagios xi Services?
Hi @SBhambri, thanks for reaching out.
This should work for Stopping/Starting xi processes...
php-fpm is only for newer RHEL based systems.
This should work for Stopping/Starting xi processes...
Code: Select all
systemctl stop npcd
systemctl stop nagios
systemctl stop crond
systemctl stop mysqld || systemctl stop mariadb
systemctl stop httpd
systemctl stop php-fpm
systemctl start mysqld || systemctl start mariadb
systemctl start httpd
systemctl start php-fpm
systemctl start npcd
systemctl start crond
systemctl start nagios
Please let us know if you have any other questions or concerns.
-Laura
-Laura
-
- Posts: 10
- Joined: Sun Mar 29, 2020 9:34 pm
Re: [Query] What is the right order to start and stop Nagios xi Services?
Thanks for your quick reply.