monit example tutorial how to enable status checking and manipulation

You need to enable the httpd daemon with monit to actually view the status and control, it's not only for the web interface since the httpd is the ONLY way of controlling monit and viewing the status.

monit monitor all will also reinstate disabled services if they've timed out too much.  Just restarting the service will do nothing to re-monitor a service that monit has stopped monitoring due to too many failures.

*Also note that /etc/monit.conf is what is used for configuring all parameters, the monitrc file seems to be deprecated, this includes setting the daemon time:

monit -c /etc/monitrc status
monit: The control file '/etc/monitrc' must have permissions no more than -rwx------ (0700); right now permissions are -rw-r--r-- (0644).
[root@boxhost vhosts]# chmod 700 /etc/monitrc
[root@boxhost vhosts]# monit -c /etc/monitrc status
monit: generated unique Monit id f9a36510746eba21b0ec9418de8850d5 and stored to '/root/.monit.id'
monit: error connecting to the monit daemon
[root@boxhost vhosts]# monit -c /etc/monitrc status
monit: error connecting to the monit daemon

edit /etc/monit.conf (change the paths as appropriate too):


set httpd port 2812
  allow localhost

 set daemon  60           # check services at 2-minute intervals
set idfile /var/monit/id
set statefile /var/monit/state
 set mailserver localhost               # primary mailserver
 set alert youremail@host.com
  check file apache_bin with path /usr/sbin/httpd
  check process apache with pidfile /usr/local/apache/logs/httpd.pid every 2 cycles
    start program = "/etc/init.d/httpd start" with timeout 60 seconds
    stop program  = "/etc/init.d/httpd stop"
    #if cpu > 60% for 2 cycles then alert
    #if cpu > 80% for 5 cycles then restart
    #if totalmem > 200.0 MB for 5 cycles then restart
    #if children > 250 then restart
    #if loadavg(5min) greater than 10 for 8 cycles then stop
    if failed host yourserver.com port 80 protocol http
       and request "/"
       with timeout 15 seconds
       then restart
    #if failed port 443 type tcpssl protocol http
    #   with timeout 15 seconds
    #   then restart
    if 2 restarts within 2 cycles then exec "/usr/bin/killall -9 httpd;/sbin/service httpd restart"
    depends on apache_bin
    group server
include /etc/monit.d/*

service monit restart
 


Tags:

monit, tutorial, enable, manipulationyou, httpd, daemon, interface, controlling, viewing, reinstate, disabled, ve, timed, restarting, monitoring, failures, etc, conf, configuring, parameters, monitrc, deprecated, includes, permissions, rwx, rw, boxhost, vhosts, chmod, generated, eba, ec, stored, connecting, edit, paths, localhost, intervals, idfile, var, statefile, mailserver, primary, youremail, apache_bin, usr, sbin, apache, pidfile, logs, pid, cycles, quot, init, timeout, cpu, restart, totalmem, mb, loadavg, min, yourserver, protocol, http, tcpssl, restarts, exec, bin, killall, server,

Latest Articles

  • Cisco CME How To Enable ACD hunt groups
  • How to install gns3 on Linux Ubuntu Mint
  • How to convert audio for Asterisk .wav format
  • Using Cisco CME Router with Asterisk as a dial-peer
  • Cisco CME How To Configure SIP Trunk VOIP
  • Virtualbox host Only Network Error Failed to save host network interface parameter - Cannot change gateway IP of host only network
  • Cisco CME and C7200 Router Testing and Learning Environment on Ubuntu 20+ Setup Tutorial Guide
  • Abusive IP ranges blacklist
  • How to Install Any OS on a Physical Drive from Windows Using VMware Workstation (Linux, Windows, BSD)
  • CDN Cloudflare how to set and preserve the real IP of the client without modifying application code on Apache
  • CentOS 7 fix Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=7&arch=x86_64&repo=os&infra=container error was 14: curl#6 -
  • Ubuntu Debian How To Install Recommended Packages Automatically
  • How to set Linux Ubuntu Redhat Debian Command Line http https socks proxy for yum apt
  • How to resize a pdf without losing much quality in Linux Mint Ubuntu Debian Redhat Solution
  • qemu: could not load PC BIOS 'bios-256k.bin' solution
  • Proxmox How To Custom Partition During Install
  • Hyper-V Linux VM Boots to Black Screen, Storage, NIC Not Found Issues
  • Ubuntu Mint How to Fix Missing/Broken /dev and /dev/pts which causes terminal to immediately close exit and not work
  • How high can a Xeon CPU get?
  • bash fix PATH environment variable "command not found" solution