셸 프로 그래 밍 항목 [메 일 경보 시스템]
자체 적 으로 작 성 된 모니터링 스 크 립 트 의 장점
1. 한 서버 에서 작 성 된 스 크 립 트 를 복사 하면 이 서버 는 스스로 자신 을 감시 하고 기계 에서 스 크 립 트 가 작 성 된 모니터링 항목 과 관련 된 오류 가 발생 하면 스스로 경고 메 일 을 보 냅 니 다.
2. 자신 이 작성 한 스 크 립 트 는 비교적 작고 시스템 자원 을 적 게 차지 하 며 기능 을 맞 출 수 있 으 며 한 대 또는 여러 대의 기 계 를 따로 뽑 아 감시 하지 않 아 도 되 는 서버 입 니 다.
3. 자신 이 작성 한 스 크 립 트 가 기 술 력 이 강하 면 모니터링 의 자동 화 를 실현 할 수 있 기 때문에 매일 모니터링 을 할 사람 을 찾 지 않 아 도 됩 니 다.
단점:
1. 자신 이 작성 한 스 크 립 트 는 bug 가 많 고 유지 하기 쉬 운 정 도 는 운영 자의 경험 에 따라 큰 관계 가 있 습 니 다.
2. 전문 적 인 모니터링 소프트웨어 가 없 는 모든 이미지 (이미지 가 나 오지 못 하 는 것 이 아니 라 만 들 려 면 비교적 큰 비용 을 들 여야 하 는 것 이다. 이것 은 중 소기 업 이 감당 할 수 있 는 것 이 아니다).
3. 시장 에서 주류 가 되 는 모니터링 소프트웨어 는 모두 자신 이 성숙 한 지역 사 회 를 가지 기 때문에 오류 가 발생 하면 쉽게 해결 할 수 있다.
4. 감시 하 는 기계 가 많아 지면 전문 적 인 감시 소프트웨어 의 사용 이 편리 하지 않다.
2. 프로그램 구조
/usr/local/sbin/
(홈 디 렉 터 리 mon)
___________________________|______________________________________
| | | | |
bin conf shares mail log
| | | | |
[main.sh] [ mon.conf] [load.sh 502.sh] [mail.php mail.sh] [ mon.log err.log ]
설명:
빈 아래 는 메 인 프로그램 으로 전체 스 크 립 트 의 입구 로 서 전체 시스템 의 명맥 입 니 다.
conf 아래 는 설정 파일 입 니 다. 제어 센터 입 니 다. 각 서브루틴 을 끄 고 연 결 된 로그 파일 을 지정 합 니 다.
shares 아래 는 각 모니터링 스 크 립 트 입 니 다. 이것 이 야 말로 진정한 모니터링 스 크 립 트 입 니 다. 각 지 표를 모니터링 하 는 데 사 용 됩 니 다.
메 일 엔진 은 phop 프로그램 으로 이 루어 집 니 다. 메 일 을 보 내 는 서버, 메 일 을 보 내 는 사람, 메 일 을 받 는 사람 을 정의 할 수 있 습 니 다.
로그 아래 는 로그 입 니 다. 전체 모니터링 시스템 에 로그 출력 이 있어 야 합 니 다.
3. 대본 작성
1. bin 디 렉 터 리 의 홈 프로그램 작성
[root@hpf-linux~]# cat /usr/local/sbin/mon/bin/main.sh
#!/bin/bash
#Written by aming.
#
export send=1
# ip
export addr=`/sbin/ifconfig |grep -A1 'eth0' |grep addr: |awk '{print $2}'|awk -F: '{print $2}'`
dir=`pwd`
#
last_dir=`echo $dir|awk -F'/' '{print $NF}'`
# , , bin , 、
if [ $last_dir == "bin" ] || [ $last_dir == "bin/" ];
then
conf_file="../conf/mon.conf"
else
echo "you shoud cd bin dir"
exit
fi
exec 1>>../log/mon.log 2>>../log/err.log
echo "`date +"%F %T"` load average"
/bin/bash ../shares/load.sh
# 502
if [ grep -q 'to_mon_502=1' $conf_file ];
then
export log=`grep 'logfile=' $conf_file |awk -F '=' '{print $2}' |sed 's/ //g'`
/bin/bash ../shares/502.sh
fi
2. conf 디 렉 터 리 아래 설정 파일 작성
[root@hpf-linux ~]# cat /usr/local/sbin/mon/conf/mon.conf
## to config the options if to monitor
## httpd 1 , 0
to_mon_httpd=0
## php 1 , 0
to_mon_php_socket=0
## http_code_502
to_mon_502=1
logfile=/data/log/www.xxx.com/access.log
## request_count
to_mon_request_count=0
req_log=/data/log/www.xxx.com/access.log
domainname=www.xxx.com
3. shares 디 렉 터 리 에 있 는 모니터링 스 크 립 트 를 작성 합 니 다.
[root@hpf-linux ~]# cat /usr/local/sbin/mon/shares/load.sh //
#! /bin/bash
##Writen by aming##
load=`uptime |awk -F 'average: ' '{print $2}'|cut -d',' -f1|cut -d. -f1`
# CPU
processor=`cat /proc/cpuinfo | grep 'processor' | wc -l`
if [ $load -gt $processor ] && [ $send -eq "1" ]
then
echo "$addr `date +%T` load is $load" >../log/load.tmp
/bin/bash ../mail/mail.sh $addr\_load $load ../log/load.tmp
fi
echo "`date +%T` load is $load"
[root@hpf-linux~]# cat /usr/local/sbin/mon/shares/502.sh //502
#! /bin/bash
d=`date -d "-1 min" +%H:%M`
c_502=`grep :$d: $log |grep ' 502 '|wc -l`
if [ $c_502 -gt 10 ] && [ $send == 1 ]; then
echo "$addr $d 502 count is $c_502">../log/502.tmp
/bin/bash ../mail/mail.sh $addr\_502 $c_502 ../log/502.tmp
fi
echo "`date +%T` 502 $c_502"
[root@hpf-linux~]# cat /usr/local/sbin/mon/shares/disk.sh //
#! /bin/bash
##Writen by aming##
rm -f ../log/disk.tmp
for r in `df -h |awk -F '[ %]+' '{print $5}'|grep -v Use`
do
if [ $r -gt 90 ] && [ $send -eq "1" ]
then
echo "$addr `date +%T` disk useage is $r" >>../log/disk.tmp
fi
if [ -f ../log/disk.tmp ]
then
df -h >> ../log/disk.tmp
/bin/bash ../mail/mail.sh $addr\_disk $r ../log/disk.tmp
echo "`date +%T` disk useage is nook"
else
echo "`date +%T` disk useage is ok"
fi
4. mail 디 렉 터 리 에 있 는 메 일 엔진 과 메 일 발송 스 크 립 트 작성
메모: 메 일 발송 엔진 을 사용 하려 면 메 일 발송 사용자 의 SMTP 서 비 스 를 켜 야 합 니 다!
[root@hpf-linux~]# cat /usr/local/sbin/mon/mail/mail.php //
<?php
class Smtp
{
/* Public Variables */
var $smtp_port;
var $time_out;
var $host_name;
var $log_file;
var $relay_host;
var $debug;
var $auth;
var $user;
var $pass;
/* Private Variables */
var $sock;
/* Constractor */
function Smtp($relay_host = "", $smtp_port = 25,$auth = false,$user,$pass)
{
$this->debug = FALSE;
$this->smtp_port = $smtp_port;
$this->relay_host = $relay_host;
$this->time_out = 30; //is used in fsockopen()
#
$this->auth = $auth;//auth
$this->user = $user;
$this->pass = $pass;
#
$this->host_name = "localhost"; //is used in HELO command
$this->log_file = "";
$this->sock = FALSE;
}
/* Main Function */
function sendmail($to, $from, $subject = "", $body = "", $mailtype, $cc = "", $bcc = "", $additional_headers = "")
{
$mail_from = $this->get_address($this->strip_comment($from));
$body = ereg_replace("(^|(\r
))(\.)", "\1.\3", $body);
$header = "MIME-Version:1.0\r
";
if($mailtype=="HTML"){
$header .= "Content-Type:text/html\r
";
}
$header .= "To: ".$to."\r
";
if ($cc != "") {
$header .= "Cc: ".$cc."\r
";
}
$header .= "From: $from<".$from.">\r
";
$header .= "Subject: ".$subject."\r
";
$header .= $additional_headers;
$header .= "Date: ".date("r")."\r
";
$header .= "X-Mailer:By Redhat (PHP/".phpversion().")\r
";
list($msec, $sec) = explode(" ", microtime());
$header .= "Message-ID: <".date("YmdHis", $sec).".".($msec*1000000).".".$mail_from.">\r
";
$TO = explode(",", $this->strip_comment($to));
if ($cc != "") {
$TO = array_merge($TO, explode(",", $this->strip_comment($cc)));
}
if ($bcc != "") {
$TO = array_merge($TO, explode(",", $this->strip_comment($bcc)));
}
$sent = TRUE;
foreach ($TO as $rcpt_to) {
$rcpt_to = $this->get_address($rcpt_to);
if (!$this->smtp_sockopen($rcpt_to)) {
$this->log_write("Error: Cannot send email to ".$rcpt_to."
");
$sent = FALSE;
continue;
}
if ($this->smtp_send($this->host_name, $mail_from, $rcpt_to, $header, $body)) {
$this->log_write("E-mail has been sent to <".$rcpt_to.">
");
} else {
$this->log_write("Error: Cannot send email to <".$rcpt_to.">
");
$sent = FALSE;
}
fclose($this->sock);
$this->log_write("Disconnected from remote host
");
}
return $sent;
}
/* Private Functions */
function smtp_send($helo, $from, $to, $header, $body = "")
{
if (!$this->smtp_putcmd("HELO", $helo)) {
return $this->smtp_error("sending HELO command");
}
#auth
if($this->auth){
if (!$this->smtp_putcmd("AUTH LOGIN", base64_encode($this->user))) {
return $this->smtp_error("sending HELO command");
}
if (!$this->smtp_putcmd("", base64_encode($this->pass))) {
return $this->smtp_error("sending HELO command");
}
}
#
if (!$this->smtp_putcmd("MAIL", "FROM:<".$from.">")) {
return $this->smtp_error("sending MAIL FROM command");
}
if (!$this->smtp_putcmd("RCPT", "TO:<".$to.">")) {
return $this->smtp_error("sending RCPT TO command");
}
if (!$this->smtp_putcmd("DATA")) {
return $this->smtp_error("sending DATA command");
}
if (!$this->smtp_message($header, $body)) {
return $this->smtp_error("sending message");
}
if (!$this->smtp_eom()) {
return $this->smtp_error("sending <CR><LF>.<CR><LF> [EOM]");
}
if (!$this->smtp_putcmd("QUIT")) {
return $this->smtp_error("sending QUIT command");
}
return TRUE;
}
function smtp_sockopen($address)
{
if ($this->relay_host == "") {
return $this->smtp_sockopen_mx($address);
} else {
return $this->smtp_sockopen_relay();
}
}
function smtp_sockopen_relay()
{
$this->log_write("Trying to ".$this->relay_host.":".$this->smtp_port."
");
$this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out);
if (!($this->sock && $this->smtp_ok())) {
$this->log_write("Error: Cannot connenct to relay host ".$this->relay_host."
");
$this->log_write("Error: ".$errstr." (".$errno.")
");
return FALSE;
}
$this->log_write("Connected to relay host ".$this->relay_host."
");
return TRUE;
}
function smtp_sockopen_mx($address)
{
$domain = ereg_replace("^.+@([^@]+)$", "\1", $address);
if (!@getmxrr($domain, $MXHOSTS)) {
$this->log_write("Error: Cannot resolve MX \"".$domain."\"
");
return FALSE;
}
foreach ($MXHOSTS as $host) {
$this->log_write("Trying to ".$host.":".$this->smtp_port."
");
$this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out);
if (!($this->sock && $this->smtp_ok())) {
$this->log_write("Warning: Cannot connect to mx host ".$host."
");
$this->log_write("Error: ".$errstr." (".$errno.")
");
continue;
}
$this->log_write("Connected to mx host ".$host."
");
return TRUE;
}
$this->log_write("Error: Cannot connect to any mx hosts (".implode(", ", $MXHOSTS).")
");
return FALSE;
}
function smtp_message($header, $body)
{
fputs($this->sock, $header."\r
".$body);
$this->smtp_debug("> ".str_replace("\r
", "
"."> ", $header."
> ".$body."
> "));
return TRUE;
}
function smtp_eom()
{
fputs($this->sock, "\r
.\r
");
$this->smtp_debug(". [EOM]
");
return $this->smtp_ok();
}
function smtp_ok()
{
$response = str_replace("\r
", "", fgets($this->sock, 512));
$this->smtp_debug($response."
");
if (!ereg("^[23]", $response)) {
fputs($this->sock, "QUIT\r
");
fgets($this->sock, 512);
$this->log_write("Error: Remote host returned \"".$response."\"
");
return FALSE;
}
return TRUE;
}
function smtp_putcmd($cmd, $arg = "")
{
if ($arg != "") {
if($cmd=="") $cmd = $arg;
else $cmd = $cmd." ".$arg;
}
fputs($this->sock, $cmd."\r
");
$this->smtp_debug("> ".$cmd."
");
return $this->smtp_ok();
}
function smtp_error($string)
{
$this->log_write("Error: Error occurred while ".$string.".
");
return FALSE;
}
function log_write($message)
{
$this->smtp_debug($message);
if ($this->log_file == "") {
return TRUE;
}
$message = date("M d H:i:s ").get_current_user()."[".getmypid()."]: ".$message;
if (!@file_exists($this->log_file) || !($fp = @fopen($this->log_file, "a"))) {
$this->smtp_debug("Warning: Cannot open log file \"".$this->log_file."\"
");
return FALSE;;
}
flock($fp, LOCK_EX);
fputs($fp, $message);
fclose($fp);
return TRUE;
}
function strip_comment($address)
{
$comment = "\([^()]*\)";
while (ereg($comment, $address)) {
$address = ereg_replace($comment, "", $address);
}
return $address;
}
function get_address($address)
{
$address = ereg_replace("([ \t\r
])+", "", $address);
$address = ereg_replace("^.*<(.+)>.*$", "\1", $address);
return $address;
}
function smtp_debug($message)
{
if ($this->debug) {
echo $message;
}
}
}
$file = $argv[2];
$smtpserver = "smtp.qq.com";//SMTP
$smtpserverport = "25";//SMTP
$smtpusermail = "[email protected]";//SMTP
$smtpemailto = "[email protected]";//
$smtpuser = "XXXXXX";//SMTP
$smtppass = "XXXXXX";//SMTP
$mailsubject = $argv[1];//
$mailbody = file_get_contents($file);//
$mailtype = "HTML";// (HTML/TXT),TXT
$smtp = new smtp($smtpserver,$smtpserverport,true,$smtpuser,$smtppass);// true , .
//$smtp->debug = TRUE;//
$smtp->sendmail($smtpemailto, $smtpusermail, $mailsubject, $mailbody, $mailtype);
?>
[root@hpf-linux~]# cat /usr/local/sbin/mon/mail/mail.sh //
#!/bin/bash
log=$1
t_s=`date +%s`
t_s2=`date -d "2 hours ago" +%s`
if [ ! -f /tmp/$log ]
then
echo $t_s2 > /tmp/$log
fi
t_s2=`tail -1 /tmp/$log|awk '{print $1}'`
echo $t_s>>/tmp/$log
v=$[$t_s-$t_s2]
echo $v
if [ $v -gt 3600 ]
then
/dir/to/php ../mail/mail.php "$1 $2" "$3"
echo "0" > /tmp/$log.txt
else
if [ ! -f /tmp/$log.txt ]
then
echo "0" > /tmp/$log.txt
fi
nu=`cat /tmp/$log.txt`
nu2=$[$nu+1]
echo $nu2>/tmp/$log.txt
if [ $nu2 -gt 10 ]
then
/dir/to/php ../mail/mail.php "trouble continue 10 min $1 $2 " "$3"
echo "0" > /tmp/$log.txt
fi
fi
마지막 에 쓰기:
위의 셸 스 크 립 트 프로그램 은 제 가 쓴 것 이 아니 라 선생님 아 밍 이 쓴 것 입 니 다. (제 블 로 그 는 그의 링크 가 있 습 니 다) 그 내용 은 제 가 앞으로 사용 하려 면 어느 정도 참고 가 되 어야 합 니 다. 그러나 현재 의 모니터링 소프트웨어 가 전면적 이기 때문에 이 스 크 립 트 는 구체 적 으로 많이 사용 되 지 않 을 수 있 지만 그 내용 은 저희 가 배 울 만 한 가치 가 있 습 니 다.프로 그래 밍 에 있어 서 는 고수 가 작성 한 코드 를 많이 보고 응용 할 수 있어 야 더 멀리 갈 수 있 습 니 다!
그리고 처음에 셸 이 작성 한 메 일 경보 시스템 에 대한 인식 은 제 가 현재 Liux 모니터링 에 대한 인식 입 니 다. 잘못 되 었 다 면 지적 해 주 십시오!뿌리 지 마!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ZSH에서 물고기까지ZSH는 수년 동안 내 기본 셸이었습니다. 이제 몇 달 동안 사용하면서 ZSH 구성에 대해 몇 가지 사항을 발견했습니다. 우리는 을 제공하는 시스템과 더 빨리 상호 작용하는 경향이 있습니다. 내.zshrc 구성에는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.