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

  • How to combine .txt ACLs without breaking things
  • How to ping all of Googlebot's IPs script
  • 'virtio0' uses a qcow2 feature which is not supported by this qemu version: QCOW version 3
  • Linux bash script to get the IP of a list of hostnames
  • How To Use Camera Webcam in Docker for OBS Studio etc...
  • Computer Server Won't Post Boot Or Enter BIOS Setup After Installing RAID SAS or GPU Card etc..
  • How To Test PHP Scripts from CLI with GET variables/query string
  • apt-cache how to see all available versions of a package in Debian Ubuntu Mint
  • Virtualbox VBox Guest-utils drag and drop files stops working with Windows VMs
  • How To Remove Ubuntu Netplan and Go Back to /etc/network/interfaces
  • How To Force Flash an AMD Instinct GPU To Another Model Using Debian Ubuntu Mint Linux
  • How To compile ollama from source to use unsupported AMD GPU with rocm in Ubuntu Debian
  • QEMU KVM Virtio GPU Windows Cannot Select 1080P
  • Linux Gnome Desktop Ubuntu Mint Debian Gets Slower After Weeks
  • Firefox How to Save Full Page As Screenshot/PDF
  • Nvidia Datacenter Driver Tesla Slow nvidia-smi response and high utilization with 0 usage
  • ffmpeg how to normalize / increase the volume of your audio
  • kdenlive audio blips pops cracks artifacts solution fix
  • haproxy / nginx certbot SSL issues
  • nginx how to see the real IP when behind a CDN