linux buff/cache 过高

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux buff/cache 过高相关的知识,希望对你有一定的参考价值。

参考技术A

    echo 1 > /proc/sys/vm/drop_caches

    echo 2 > /proc/sys/vm/drop_caches

    echo 3 > /proc/sys/vm/drop_caches

执行以上命令即可

Linux 设置定时清除buff/cache的脚本

查看内存缓存状态

[root@heyong ~]# free -m
total used free shared buff/cache available
Mem: 96406 19256 11311 66 65837 76421
Swap: 4095 1016 3079

清理缓存的脚本

[root@heyong ~]# vim /home/script

#!/bin/bash

#开始清理缓存
echo "开始清除缓存"

#写入硬盘,防止数据丢失
sync;sync;sync

#延迟10秒
sleep 10

#清理缓存
echo 3 > /proc/sys/vm/drop_caches

设置定时任务(每天凌晨2:30清理一次)

[root@gonghuikeji ~]# crontab -e

clear buff/cache

30 2 * /home/script/clear_buff_cache.sh

以上是关于linux buff/cache 过高的主要内容,如果未能解决你的问题,请参考以下文章

linux buff/cache

Centos7 cache/buff过高处理方法

centos系统内存 buff/cache 占用过高

电池NTC(温度过高或者过低停止充电)

在移动电子邮件客户端上显示时,文本上的行高过高

Linux中Cache内存占用过高解决办法