[Nginx] 로그 절단 과 정기 삭제 로그

4428 단어 Nginx
본 로그 절단 과 정기 삭제 로 그 는 모두 정시 작업 (cron) 을 통 해 스 크 립 트 를 수행 합 니 다.
로그 절단 스 크 립 트
cut_nginx_log_of_yesterday.sh
#!/bin/bash
# program:
#       cut nginx log of yesterday
source /etc/profile

log_path="/data/logs/nginx/"
yesterday=$(date -d "yesterday" +"%Y%m%d")

mv ${log_path}error.log ${log_path}error.$yesterday.log
mv ${log_path}pc_access.log ${log_path}pc_access.$yesterday.log

nginx -s reload

스 크 립 트 정기 삭제
rm_nginx_log.sh
#!/bin/bash
#program:
#       delete nginx logs of 10 days ago
find /data/logs/nginx/ -mtime +10 -name "*.log" -exec rm -rf {} \;

cron 프로필
cron. conf 는 두 개의 스 크 립 트 를 정시 작업 으로 설정 합 니 다.
0 0 * * * /bin/bash /opt/script/cut_nginx_log/cut_nginx_log_of_yesterday.sh
0 16 * * * /bin/bash /opt/script/cut_nginx_log/rm_nginx_log.sh

스 크 립 트 Nginx 서버 업로드 및 정시 작업 추가
로 컬 스 크 립 트 add. sh, cutnginx_log_of_yesterday.sh、rm_nginx_로그. sh 와 cron. conf 를 Nginx 서버 에 업로드 하고 정시 작업 을 추가 합 니 다.
#!/bin/bash
#program:
#       add cron to cut nginx log on nginx server

ip_array=(192.168.1.1 192.168.1.2 192.168.1.3)

cron_conf_from_path="/data/scripts/cron_to_cut_nginx/"
cron_script_from_path="/data/scripts/cron_to_cut_nginx/"

cron_conf_to_path="/opt/conf/cron_to_cut_nginx_log/"
cron_script_to_path="/opt/script/cut_nginx_log/"

for ip in ${ip_array[@]}
do
        ssh root@${ip} "mkdir -p ${cron_conf_to_path}"
        scp ${cron_conf_from_path}cron.conf root@${ip}:${cron_conf_to_path}cron.conf

        ssh root@${ip} "mkdir -p ${cron_script_to_path}"
        scp ${cron_script_from_path}cut_nginx_log_of_yesterday.sh root@${ip}:${cron_script_to_path}cut_nginx_log_of_yesterday.sh
        scp ${cron_script_from_path}rm_nginx_log.sh root@${ip}:${cron_script_to_path}rm_nginx_log.sh
        ssh root@${ip} "crontab ${cron_conf_to_path}cron.conf"
        echo "${ip}"
        ssh root@${ip} "crontab -l"

done

마지막 으로 로 컬 에서 sh add. sh 를 실행 하면 앞의 스 크 립 트 를 nginx 서버 에 업로드 하고 cron 정시 작업 을 추가 합 니 다.

좋은 웹페이지 즐겨찾기