Stopping/Starting Nagios Xi and Fusion

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
RIDS_I2MP
Posts: 751
Joined: Thu Mar 13, 2014 9:25 am

Stopping/Starting Nagios Xi and Fusion

Post by RIDS_I2MP »

Hi Team,

We have a 2 Nagios Xi(2014R2.7) instances and 1 Fusion(2014R1.0) Instance running on CentOS release 6.4 (Final) monitoring over 500 nodes and 1500 services on each system.

The OS team wants to bring down the system for some maintenance. Can you please give us step by step instructions for stopping and starting Nagios Xi and Nagios Fusion.

We will initiate the backup with the script provided prior to bringing down the services.
Thanks & Regards,
I2MP Team.
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: Stopping/Starting Nagios Xi and Fusion

Post by lmiltchev »

Nagios XI or Fusion servers can be safely stopped by running from the CLI:

Code: Select all

shutdown -h now
Be sure to check out our Knowledgebase for helpful articles and solutions!
RIDS_I2MP
Posts: 751
Joined: Thu Mar 13, 2014 9:25 am

Re: Stopping/Starting Nagios Xi and Fusion

Post by RIDS_I2MP »

Hi.

We wanted to shutdown application gracefully before server restart.Just wanted to know which services needs to be stopped for Nagios xi and fusion.
Thanks & Regards,
I2MP Team.
tmcdonald
Posts: 9117
Joined: Mon Sep 23, 2013 8:40 am

Re: Stopping/Starting Nagios Xi and Fusion

Post by tmcdonald »

shutdown -h now is what we usually do if we are going to power off the system right away anyway, but if you want to keep the server running and just shut down the nagios-related services:

Code: Select all

service nagios stop
service ndo2db stop
service postgresql stop
service mysqld stop
service httpd stop
service crond stop
with crond being somewhat optional, but we do run some cron-based scripts that you might want to bring down as well.
Former Nagios employee
Locked