课程章节: 第2章 shell编程基础:2-19 Shell脚本实战(二)(课程链接:https://coding.imooc.com/lesson/549.html#mid=50193)
主讲老师: 沈奇才
课程内容:shell编程实战与Linux运维基础--初始shell编程
课程收获:
日志备份实战,应用于多机器或集群运维场景
#! /bin/bash
# 日志压缩
LOG_DIR=logs
[[ -d "$LOG_DIR" ]] || mkdir $LOG_DIR
cd $LOG_DIR
log_out() {
log_path="compress.log"
echo $1 >> $log_path
}
# 按照 101230 每10秒生成日志文件
produce_log_files() {
while ls > /dev/null
do
let "host_count = $RANDOM % 7 + 2" # 2-8
now_time=$(date "+%H%M%S")
declare -a host_arr
for i in `seq 0 $host_count` # 5 0-5
do
host_arr[$i]="10.83.26.`expr $i + 10`" # 10-15
done
for host in "${host_arr[@]}"
do
log_out "生成日志文件: ${host}_${now_time}.access.log"
touch ${host}_${now_time}.access.log
done
sleep 10
done
}
compress_log_files() {
while ls > /dev/null
do
sleep 1
compress_time=$(find . -name "*.access.log" -exec basename {} \; | awk -F_ '{print $2}' | awk -F. '{print $1}' | sort -r | uniq | awk 'NR==1{print}')
if [ -z "$compress_time" ]; then
log_out "当前没有日志文件要压缩"
continue
fi
log_out "压缩${compress_time}文件..."
find . -name "*${compress_time}.access.log" | xargs tar -czPf log_compress_${compress_time}.tar.gz
if [ $? -eq 0 ] && [ -e "log_compress_${compress_time}.tar.gz" ]; then
find . -name "*${compress_time}.access.log" -exec rm -f {} \;
fi
log_out "压缩${compress_time}文件完成..."
done
}
produce_log_files & ##放入后台查询
compress_log_files & ##放入后台查询
对于集群的运维,除了使用遍历,还可以通过创建配置文件host.cfg,将所有需要运维的主机ip写进去,程序读取配置文件。
共同学习,写下你的评论
评论加载中...
作者其他优质文章