This is a cache of https://assets.nagios.com/downloads/nagioscore/docs/nagioscore/4/en/startstop.html. It is a snapshot of the page at 2025-05-19T01:11:48.459+0000.
Starting and Stopping Nagios Core · Nagios Core Documentation

Need Help Configuring Nagios?

Our tech support team is happy to help you with any questions you might have. Contact us on our online support forum at https://support.nagios.com/forum/

Nagios XI Makes Monitoring Easier:

Nagios XI is the easy-to-use, enterprise version of Nagios that features:

  • Web-Based Configuration provides advanced configuration features
  • Monitoring Wizards make it easy to monitor new devices, applications, and services
  • Customizable Dashboards allow for per-user customization
  • Integrated Performance graphs provide trending and capacity planning information
  • Advanced Reports provide data insight and exporting capabilities
  • Data Visualizations enable powerful analysis of patterns and problems
  • Nagios Core Import functionality makes it easy to migrate from Nagios Core
  • ... and many other features

Download a free 30-day trial to give Nagios XI a spin.

Inquire today and let our Quickstart team help you get started with Nagios XI

Up ToUp To: Contents
See Also See Also: Verifying Your Nagios Core Configuration

Tip: Always make sure you verify your configuration before you (re)start Nagios Core.

Starting Nagios Core

  1. Init Script: The easiest way to start the Nagios Core daemon is by using the init script like so:
    /etc/rc.d/init.d/nagios start
    
  2. Manually: You can start the Nagios daemon manually with the -d command line option like so:
    /usr/local/nagios/bin/nagios -d /usr/local/nagios/etc/nagios.cfg
    

Restarting Nagios Core

Restarting/reloading is nececessary when you modify your configuration files and want those changes to take effect.

  1. Init Script: The easiest way to restart the Nagios Core daemon is by using the init script like so:
    /etc/rc.d/init.d/nagios reload
    
  2. Web Interface: You can restart the Nagios Core through the web interface by clicking the "Process Info" navigation link and selecting "Restart the Nagios process":

    Restart the Nagios process

  3. Manually: You can restart the Nagios Core process by sending it a SIGHUP signal like so:
    kill -HUP <nagios_pid>
    

Stopping Nagios Core

  1. Init Script: The easiest way to stop the Nagios Core daemon is by using the init script like so:
    /etc/rc.d/init.d/nagios stop
    
  2. Web Interface: You can stop the Nagios Core through the web interface by clicking the "Process Info" navigation link and selecting "Shutdown the Nagios process":

    Shutdown the Nagios process

  3. Manually: You can stop the Nagios Core process by sending it a SIGTERM signal like so:
    kill <nagios_pid>