-->

DEVOPSZONES

  • Recent blogs

    How to restart/reload check_mk services


    How to restart/reload check_mk services


    Check_MK is an IT Monitoring system. It started originally as an extension to the Nagios monitoring system that allows creating rule-based configuration using Python and offloading work from the Nagios core to make it scale better, allowing more systems to be monitored from a single Nagios server.

    We need to do the following changes to reload/restart check_mk.

    1. Reload Check_mk .
     [Server1:/etc/init.d]# check_mk -O   or check_mk --reload
    Generating configuration for core (type nagios)...OK
    Validating Nagios configuration...OK
    Precompiling host checks...OK
    Reloading monitoring core...OK





    2.  Restart Check_mk.
    [Server1:/etc/init.d]# check_mk -R    or check_mk --restart
    Generating configuration for core (type nagios)...OK
    Validating Nagios configuration...OK
    Precompiling host checks...OK
    Restarting monitoring core...OK

    No comments