去评论
海欣资源

如何在Linux中设置定时清除运行内存(buff_cache)的脚本

Spring
2022/06/11 18:30:31
前言
Linux服务器上当程序运行的时间过长的时候会产生一系列临时文件或者是内存碎片占有着系统的内存,故需要定时清理一下服务器中的buff/cache,本文一步步的带着你你如何在Linux中设置定时清除运行内存(buff_cache)的脚本。

1、查看内存缓存状态
  1. [root@huaxing ~]# free -h
  2.               total        used        free      shared  buff/cache   available
  3. Mem:           7.6G        1.4G        5.2G         24M        973M        5.9G
  4. Swap:            0B          0B          0B
2、配置清理缓存的脚本
2.1、新建或打开脚本
  1. [root@huaxing ~]# vim /root/script/clear_buff_cache.sh
2.2 clear_buff_cache配置文件中增加如下代码
  1. #!/bin/bash

  2. #开始清理缓存
  3. echo "开始清除缓存"
  4. #写入硬盘,防止数据丢失
  5. sync;sync;sync
  6. #延迟10秒
  7. sleep 10
  8. #清理缓存
  9. echo 3 > /proc/sys/vm/drop_caches
使用 !wq 命令进行保存配置文件
3、设置定时任务
  1. [root@huaxing ~]# crontab -e
crontab -e 配置文件中增加如下配置
  1. # clear buff/cache
  2. 30 1 * * * sh  /home/script/clear_buff_cache.sh