项目场景:日志文件过大影响磁盘空间
例如:项目场景:egg后端接受传感器数据,后台打印数据过大,导致磁盘利用率>95%问题描述:
建议用shell脚本写自动删除日志功能,待日后完善笔记
查看当前目录各文件及子目录大小
[root@VM-0-13-centos agriculture]# du -h --max-depth=0 *
116K agriculture-web.log
4.0K agriculture-web.log.2021-04-09
16K agriculture-web.log.2021-04-10
8.0K agriculture-web.log.2021-04-11
.
.
.
116K agriculture-web.log
4.0K agriculture-web.log.2021-04-09
16K agriculture-web.log.2021-04-10
8.0K agriculture-web.log.2021-04-11
日志文件有很多
[root@VM-0-111-centos logs]# find -type f -exec ls -l {} \;
-rw-r--r-- 1 root root 72633 Dec 14 15:02 ./master-stdout.log.20201214.150519
-rw-r--r-- 1 root root 16919 Jan 30 18:10 ./master-stdout.log.20210130.182137
-rw-r--r-- 1 root root 16598 Feb 4 20:04 ./master-stdout.log.20210204.200424
.
.
.
-rw-r--r-- 1 root root 16598 Feb 4 22:18 ./master-stdout.log.20210204.221836
-rw-r--r-- 1 root root 23967 Jan 25 19:43 ./master-stdout.log.20210125.195408
查看2021年1月份的全部文件
[root@VM-0-13-centos logs]# find -name "master-stderr.log.20201**.******"
./master-stderr.log.20201123.212345
./master-stderr.log.20201126.161525
.
.
.
./master-stderr.log.20201214.150519
./master-stderr.log.20201126.205610
删除2021年1月的全部日志
[root@VM-0-13-centos logs]# find -name "master-stderr.log.20201**.******" -exec rm {} \;