2016-12-12 6 views
0

를 실행하지 I가 나는 그것이 작동하지 않는 내의 nginx 로그를 분석하고 내의 nginx의 logrotate에 스크립트에 추가 나에게 결과를, 이메일,하지만 쓴 스크립트 ...logrotate에는 prerotate 스크립트

/var/log/nginx/*.log { 
     daily 
     missingok 
     rotate 14 
     compress 
     delaycompress 
     notifempty 
     create 0640 www-data adm 
     sharedscripts 
     prerotate 
       /root/bin/nginx-parse.sh 
       if [ -d /etc/logrotate.d/httpd-prerotate ]; then \ 
         run-parts /etc/logrotate.d/httpd-prerotate; \ 
       fi \ 
     endscript 
     postrotate 
       invoke-rc.d nginx rotate >/dev/null 2>&1 
     endscript 
} 

이 스크립트는 prerotate 섹션에 있으며 root 사용자로 호출하면 작동합니다.이 사용자는 logrotate가 실행되는 것으로 생각합니다.

언제 logrotate -d -f /etc/logrotate.d/nginx을 실행하면 나에게 이메일을 보내지 않습니다.

여기에서 어디로 가야합니까?

alert-mail.sh.sh :

#!/usr/bin/python 
import smtplib 
import sys 
from email.mime.text import MIMEText 

server = smtplib.SMTP('smtp.example.com', 587) 
server.starttls() 
server.login("[email protected]", "secret") 

# Create message 
msg = MIMEText(sys.argv[2]) 
msg['Subject'] = sys.argv[1] 
msg['From'] = "[email protected]" 
msg['To'] = "[email protected]" 

server.sendmail(msg["From"], [msg["To"]], msg.as_string()) 
server.quit() 

nginx-parse.sh

나는 /root/bin/nginx-parse.sh 스크립트는 당신에게 이메일을 보내는 것을 이해
#!/bin/bash 
# For parsing of the nginx logfile and emailing to myself 

rm /root/bin/nginx_email.txt 
printf "NGINX STATUS CODES\n\n" >> /root/bin/nginx_email.txt 
cat /var/log/nginx/access.log | cut -d '"' -f3 | cut -d ' ' -f2 | sort | uniq -c | sort -rn >> /root/bin/nginx_email.txt 
printf "\n\n404 URLS\n\n" >> /root/bin/nginx_email.txt 
awk '($9 ~ /404/)' /var/log/nginx/access.log | awk '{print $7}' | sort | uniq -c | sort -rn >> /root/bin/nginx_email.txt 
printf "\n\n502 URLS\n\n" >> /root/bin/nginx_email.txt 
awk '($9 ~ /502/)' /var/log/nginx/access.log | awk '{print $7}' | sort | uniq -c | sort -r >> /root/bin/nginx_email.txt 
printf "\n\nMOST ACCESSES URLS\n\n" >> /root/bin/nginx_email.txt 
awk -F\" '{print $2}' /var/log/nginx/access.log | awk '{print $2}' | sort | uniq -c | sort -rg | head -n 50 >> /root/bin/nginx_email.txt 

#Sending the email using the python script I wrote 
alert-mail "NGINX PARSING" "$(cat /root/bin/nginx_email.txt)" 

답변

1

. logrotate에서 실행될 때 메일과 같은 명령의 바이너리에 전체 경로 (예 : 메일 대신/usr/bin/mail)가 있는지 확인하십시오. 스크립트의 내용은 무엇입니까? 또한 -v 플래그로 logrotate를 실행하십시오. logrotate -d -v -f /etc/logrotate.d/nginx

+0

스크립트를 게시했습니다. 게시물을 편집 한 후에 경고 메일 스크립트 ('/ root/bin'에있는 python 스크립트)의 전체 경로를 추가하려고 시도했습니다. 중요한 것은 nginx-parse 스크립트가 작동 함을 기억하고 메일을 보내는 것입니다. ... logrotate가 실행될 때 실행되지 않습니다. – deltaskelta

+0

logrotate -v -f /etc/logrotate.d/nginx의 로그를 붙여 넣을 수 있습니까? 혹시라도 다음과 같은 메시지가 보이십니까? /root/bin/nginx-parse.sh : 15 행 : alert-mail : 명령을 찾을 수 없습니다. – codeforwin

+0

작업 중입니다. 어떤 것이 실제로 고쳐 졌는지 확실하지 않지만 작동 중입니다. 감사 – deltaskelta