1、安装Monit

Debian可以直接:apt-get install monit安装。

官网下载最新版:http://mmonit.com/download/

源码编译安装:

相关依赖: yum install pam-devel

tar zxvf monit-5.7.tar.gz

cd monit-5.7

./configure --prefix=/usr/local/monit --sysconfdir=/usr/local/monit/etc

make

make install

mkdir -p /usr/local/monit/etc

cp monitrc /usr/local/monit/etc

chmod 600 /usr/local/monit/etc/monitrc

2、修改配置文件

CentOS用RPM包安装的话配置文件在:/etc/monit.conf;

Debian apt-get安装的话配置文件在:/etc/monit/monitrc;

源码编译在安装目录 /etc/monit.conf

下面是一个简单的例子,配置文件中已经包含了大量的例子,可以看配置文件参考。

set daemon 120 #设置检测时间

set logfile /var/log/monit.log #monit日志

set httpd port 2812 and # monit内置了一个用于查看被监视服务

use address 192.168.10.197 #设置这个http服务器的地址或注释使用所有本机IP

allow 192.168.10.0/24 #允许本地访问

allow admin:monit #设置使用用户名admin和密码monit

set mailserver smtp.12320.tv port 25 USERNAME "zsxlmonitor" PASSWORD "123456" #(设置发送邮件的服务器及邮箱)

#制定报警邮件的格式

set mail-format {

from: zsxlmonitor@12320.tv

subject: [From Monit]$SERVICE $EVENT at $DATE

message:Date:$DATE

ServerHost: $HOST

Item:$SERVICE

Problem: $DESCRIPTION.

Action:$ACTION

}

#指定邮件接收者

set alert zsxlmonitor@12320.tv with reminder on 3 cycles #每3个周期发送一次警告

或者

set alert zsxlmonitor@12320.tv #每个错误都发送警告邮件

#####################监控实例#####################

#检测sshd服务

check process sshd with pidfile /var/run/sshd.pid

start program "/etc/init.d/sshd start"

stop program "/etc/init.d/sshd stop"

if failed port 22 protocol ssh then restart

if 5 restarts within 5 cycles then timeout

#检测mysql服务

check process mysql with pidfile /usr/local/mysql/var/vpser.pid

group database

start program = "/etc/init.d/mysql start"

stop program = "/etc/init.d/mysql stop"

if failed host 127.0.0.1 port 3306 then restart

if 5 restarts within 5 cycles then timeout

#检测nginx服务

check process nginx with pidfile /usr/local/nginx/logs/nginx.pid

start program = "/etc/init.d/nginx start"

stop program = "/etc/init.d/nginx stop"

if failed host localhost port 80 protocol http

then restart

自定义脚本:

if failed host localhost port 80 protocol http then exec “/usr/bin/restart.sh”

配置中的pid及启动、关闭脚本的路径一定要是全路径,且参数一定要正确否则会造成无法正常检测或正常启动。

如果添加了http可以直接使用http://192.168.10.197:2812进行管理。

可以看到监控服务的运行状态:

3、启动/停止Monit

/usr/local/monit/bin/monit启动

/usr/local/monit/bin/monit quit关闭

Optional action arguments for non-daemon mode are as follows:

start all           - Start all services

start name          - Only start the named service

stop all            - Stop all services

stop name           - Only stop the named service

restart all         - Stop and start all services

restart name        - Only restart the named service

monitor all         - Enable monitoring of all services

monitor name        - Only enable monitoring of the named service

unmonitor all       - Disable monitoring of all services

unmonitor name      - Only disable monitoring of the named service

reload              - Reinitialize monit

status              - Print full status information for each service

summary             - Print short status information for each service

quit                - Kill monit daemon process

validate            - Check all services and start if not running

procmatch - Test process matching pattern

4、参数配置语法

4.1 监控模块

监控性能[运行中的程序,需指定PID]

CHECK PROCESS | MATCHING >

监控文件

CHECK FILE PATH

CHECK FIFO PATH

监控文件系统

CHECK FILESYSTEM PATH

监控目录

CHECK DIRECTORY PATH

监控主机

CHECK HOST ADDRESS

监控系统

CHECK SYSTEM

监控程序

CHECK PROGRAM PATH [TIMEOUT SECONDS]

4.2 动作[action]

ALERT               执行报警动作

RESTART           执行重启[根据定义的start program和stop program,先执行stop,然后start]

START                执行启动[直接执行定义的start program]

STOP                  执行关闭[直接执行定义的stop program]

EXEC                  执行脚本[直接执行 “ ” 内指定脚本(全路径)]

UNMONITOR   停止监控

4.3 资源项目[RESOURCE]

--PROCESS

CPU([user|system|wait])                  CPU明细

CPU                                                         CPU使用率

TOTALCPU                                             CPU使用率【含子进程】

SWAP                                                       交换分区使用< Byte, kB, MB, GB >

CHILDREN                                             子进程

MEMORY                                                        内存使用< Byte, kB, MB, GB >

TOTALMEMORY                                   内存使用【含子进程】< Byte, kB, MB, GB >

LOADAVG([1min|5min|15min])       系统负载

UPTIME                                                  运行时间< "SECONDS", "MINUTES", "HOURS", or "DAYS" >

--FILE

SIZE                                                         大小< "B","KB","MB","GB" >

Permission                                             权限

UID

GID

PID

PPID

TIMESTAMP                                          时间戳< "SECONDS", "MINUTES", "HOURS", or "DAYS" >

--SYSTEMFILE

usage                                                      已使用

SPACE                                                      距离项存在[值]

INODE                                                     inode值

--HOST

host []                                                     主机[IP、域名]

port []                                                      端口[值]

type []                                                     传输协议[TCP|UDP|TCPSSL]

protocol []                                              服务协议[APACHE-STATUS DNS DWP FTP GPS HTTP IMAP CLAMAV LDAP2 LDAP3 LMTP MEMCACHE MYSQL NNTP NTP3 POP POSTFIX-POLICY RADIUS RDATE RSYNC SIP SMTP SSH TNS PGSQL]

The HTTP protocol supports in addition:

REQUEST

HOSTHEADER

CHECKSUM

The Apache-status protocol supports in addition:

logging (loglimit)

closing connections (closelimit)

performing DNS lookups (dnslimit)

in keepalive with a client (keepalivelimit)

replying to a client (replylimit)

receiving a request (requestlimit)

initialising (startlimit)

waiting for incoming connections (waitlimit)

gracefully closing down (gracefullimit)

performing cleanup procedures (cleanuplimit)

-- PROGRAM

status                                                     程序执行状态

4.4 判断测量[TEST]

FAILED [RESOURCE] 项的值为错误

CHANGED [RESOURCE] 项存在变化

EXIST [项] 存在[项]

DOES NOT EXIST 不存在[项]

4.4 比较语法

"", "!=", "=="

"gt", "lt", "eq", "ne"

"greater", "less", "equal", "notequal" then 值

4.5 监测时间

EVERY [number] CYCLES

every 2 cycles #每2个周期监测一次

EVERY [cron]

every "* * * * *"分时日月周,*所有 x-y表示X至y,“,”指定某个点

every "* 8-19 * * 1-5" #每周1至5,每天早上8点至晚上7点内,按周期间隔监测

NOT EVERY [cron]用法与VERY [cron]相反

5、实例语法

1.系统性能

#监控系统性能,定义监控名称myhost

check system myhost

#如果1分钟内系统负载大于4,则执行报警

if loadavg (1min) > 4 then alert

#如果5分钟内系统负载大于2,则执行报警

if loadavg (5min) > 2 then alert

#如果总内存使用率高于75%,则执行报警

if memory usage > 75% then alert

#如果交换空间使用率大于25%,则执行报警

if swap usage > 25% then alert

#如果CPU(user)使用率高于70%,则执行报警

if cpu usage (user) > 70% then alert

#如果CPU(system)使用率高于30%,则执行报警

if cpu usage (system) > 30% then alert

#如果CPU(wait)使用率高于20%,则执行报警

if cpu usage (wait) > 20% then alert

2.硬盘监控

#监控文件系统:/dev/sdb1,定义监控名称为datafs

check filesystem datafs with path /dev/sdb1

#挂载、卸载文件系统,注意开启这个功能。

#start program  = "/bin/mount /data"

#stop program  = "/bin/umount /data"

#检测文件系统的权限不为660时,则停止监控

if failed permission 660 then unmonitor

#检测文件系统的UID不为root时,则停止监控

if failed uid root then unmonitor

#检测文件系统的GID不为disk时,则停止监控

if failed gid disk then unmonitor

#检测文件系统的空间使用率超过80%,则执行报警

if space usage > 80% for 5 times within 15 cycles then alert

#检测文件系统的空间使用率超过90%,则执行卸载文件系统

#if space usage > 99% then stop

#检测文件系统的inode使用数超过30000,则执行报警

if inode usage > 30000 then alert

#检测文件系统的inode使用率超过99%,则执行卸载文件系统

if inode usage > 99% then stop

3.文件监控

#监控文件:/data/mydatabase.db,定义监控名称为database

check file database with path /data/mydatabase.db

#检测文件系统的权限不为700时,则停止监控

if failed permission 700 then alert

#检测文件的UID不为data时,则执行报警

if failed uid data then alert

#检测文件的GID不为data时,则执行报警

if failed gid data then alert

#检测文件的时间戳大于15分钟时,则执行报警

if timestamp > 15 minutes then alert

#检测文件的大小如果大于100M,则执行脚本

if size > 100 MB then exec "/my/cleanup/script" as uid dba and gid dba

4.目录监控

#监控目录:/bin,定义监控名称为bin

check directory bin with path /bin

#如果目录权限不为755,则停止监控

#    if failed permission 755 then unmonitor

#如果目录的UID不为0,则停止监控

#    if failed uid 0 then unmonitor

#如果目录的GID不为0,则停止监控

#    if failed gid 0 then unmonitor

5.进程监控

#监控进程,指定进程的pid文件:/usr/local/apache/logs/httpd.pid,定义监控名称为Apache

check process Apache with pidfile /usr/local/apache/logs/httpd.pid

start program = "/usr/local/apache/bin/httpd -k start"

stop program  = "/usr/local/apache/bin/httpd -k stop"

#检测进程的CPU占用率高于60%时,则执行报警

if cpu > 60% for 5 cycles then alert

#检测进程的CPU占用率高于80%时,则执行重启

if cpu > 80% for 10 cycles then restart

#检测进程的总内存占用高于200MB时,则执行重启

#    if totalmem > 200.0 MB for 5 cycles then restart

#检测进程的子进程数高于200个,则执行报警

if children > 200 for 3 times within 5 cycles then alert

#检测进程的子进程数高于500个,则执行重启

if children > 500 for 5 times within 15 cycles then restart

#检测进程5分钟内的平均负载大于10时,则执行停止

#if loadavg(5min) greater than 10 for 8 cycles then stop

#检测127.0.0.1的80端口如果超时[5s]、错误,则执行重启

if failed host 127.0.0.1 port 80 protocol http for 5 times within 10 cycles then restart

#检测访问http://127.0.0.1/check.php,如果返回内容不是”OK”,则执行报警

if failed url http://127.0.0.1/check.php

and content == 'ok'

then alert

#检测访问127.0.0.1:80//somefile.html如果错误,则执行重启

if failed host 127.0.0.1 port 80 protocol http and request "/somefile.html" then restart

#检测指定主机,发送请求,判断返回值,执行指令

if failed host 127.0.0.1 port 80

send "GET / HTTP/1.0\r\nHost: 127.0.0.1\r\n\r\n"

expect "HTTP/[0-9\.]{3} 200 OK"

then alert

#检测apache-status判断值,执行指令

if failed host 127.0.0.1 port 80 protocol apache-status

loglimit > 10% or

dnslimit > 50% or

waitlimit < 20%

then alert

#if failed port 443 type tcpssl protocol http with timeout 15 seconds then restart

#如果在5个周期内重启3次进程,则判断为超时

#if 3 restarts within 5 cycles then timeout

#depends on apache_bin

#group server

6.监控主机

check host myserver with address 192.168.1.1

if failed icmp type echo count 3 with timeout 3 seconds then alert

if failed port 3306 protocol mysql with timeout 15 seconds then alert

if failed url http://user:password@www.foo.bar:8080/?querystring and content == 'action="j_security_check"' then alert

monit监控mysql_monit监控工具(客户端)相关推荐

  1. monit监控mysql_monit监控软件安装配置

    monit很不错的监控软件,下载安装如下: wget http://mmonit.com/monit/dist/monit-5.1.1.tar.gz #最新的版本可能不是这个 tar xzvf mon ...

  2. monit监控mysql_Monit 监控服务工具教程

    一.Monit 介绍 Monit是用于管理和监视Unix系统上的进程,程序,文件,目录和文件系统的实用程序.Monit会进行自动维护和修复,并且可以在错误情况下执行有意义的因果操作.例如,Monit可 ...

  3. monit监控python脚本

    使用monit监控Python脚本时,要注意:start中创建单独的进程,并运行到后台,否则monit会认为程序超时. 主要有两种方式: 使用su命令 check process 1-wire wit ...

  4. 视频监控安卓App客户端--Mjpg-streamer推流的播放

    概述: 视频监控安卓App客户端其开发环境是Android Stdio.该软件实现了门禁系统的实时监控的视频的移动端的查看.该软件的设计较为简洁,采用两个文本输入框用于输入嵌入式Linux端服务器的I ...

  5. 服务监控系统(客户端实现)

    原文链接:服务监控系统(客户端实现) //单线程运行+睡眠运行package com.heart.beat.runner;import com.heart.beat.heatbeat.HeartSen ...

  6. Linux 下 Monit 监控

    背景 由于应用稳定性或者服务器资源限制等问题,应用就会出现自动挂掉的情况,此时就需要自动拉起应用. 生产环境,为了防止因为意外宕机造成服务长时间中断,一般都会设置服务进程监控拉起机制. 简介 Moni ...

  7. 使用Monit监控进程与系统状态

    背景介绍: 随着线上服务器数量的增加,各种开源软件和工具的广泛使用,一些服务自动停止或无响应的情况时有发生. 而其中有很大一部分都是由于软件自身的稳定性或者机器硬件资源的限制而造成的,按道理来讲,这些 ...

  8. 温度实时监控上报(客户端)

    温度实时监控上报 客户端功能 1.树莓派上运行socket客户端程序,每隔30秒以字符串"ID/时间/温度"形式上报 采样温度,其中ID为树莓派的编号,便于服务器端区别是哪个树莓派 ...

  9. 网络带宽监控,带宽监控工具哪个好

    带宽监控 了解网络需求对于保持网络正常运行至关重要.随着远程工作时代的到来,监控和规划带宽利用率变得非常重要.最近的调查报告称,由于疫情对远程办公的需求翻了一番,VoIP 和视频流量增加了 45%.因 ...

最新文章

  1. 企业级 SpringBoot 教程 (十七)上传文件
  2. DVWA--SQL Injection(非盲注)--四个级别
  3. SAP Marketing Cloud的几大核心模块讲解
  4. HALCON基于形状匹配详解
  5. 2014蓝桥杯-B-省赛-五-圆周率
  6. vb的VSFlexGrid控件
  7. android 解码webp动画,android webp编解码详解
  8. 开源/免费数学书大合集:微积分、线代、数分、抽代…数学教授分类整理,精心推荐...
  9. c++ 终止 超时_c++超时问题
  10. 远洋渔船一次出海好几年,生活枯燥,那你在船上最开心的事是啥?
  11. Windows下SQLMAP的安装图解
  12. 《Redis视频教程》(p2)
  13. 深处python漩涡中,谁能独善其身?
  14. 使用poi导出excel,及合并单元格边框显示问题
  15. 日常之卸载奇安信相关~
  16. 新手如何对文件进行简单的上传
  17. Cisco测试命令和TCP/IP连接故障处理整理集合
  18. 海康威视 2021 春招面试题
  19. JAVA实现简单数据采集
  20. layer 弹出层传递参数

热门文章

  1. 原理 rpm_图文详解,微型直流电机的工作原理
  2. Python+OpenCV:形态学变换
  3. java基础之算法_java基础算法
  4. dart基础之异步编程
  5. PHP-FPM,Nginx,FastCGI 之间的关系
  6. centos 的php5.3.3 升级5.5.3
  7. BZOJ 2738: 矩阵乘法 [整体二分]
  8. 对“优秀工程师”的一点感悟
  9. 系统安装教程:Windows7硬盘安装方法详细图文教程及使用工具下载
  10. 华为机试HJ25:数据分类处理