Linux 服务器buff/cache清理
Posted 每天多帅一点点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 服务器buff/cache清理相关的知识,希望对你有一定的参考价值。
使用Top命令查看内存及缓冲区使用情况
当磁盘频繁产生IO时会导致buff/cache占用很高的内存,导致可用物理内存很少
但是当真正需要内存时,缓冲区内存会自动释放.
如果需要清理可以用
cache清理 sync;echo 3 > /proc/sys/vm/drop_caches
前面加sync 是为了防止内容丢失
free pagecache:echo 1 >/proc/sys/vm/drop_caches
To free dentries and inodes:echo 2 >/proc/sys/vm/drop_caches
二者都清理就是 sync;echo 3 > /proc/sys/vm/drop_caches
以上是关于Linux 服务器buff/cache清理的主要内容,如果未能解决你的问题,请参考以下文章