Linux下清除服务器缓存

  • 操作环境:CentOs X64

清除缓存执行命令

[root@VM_230_32_centos www]# sync; echo 3 > /proc/sys/vm/drop_caches
[root@VM_230_32_centos www]# free -m
              total        used        free      shared  buff/cache   available
Mem:            992         255         622           0         114         602
Swap:             0           0           0

echo后面的数字意义:

0 // 默认参数为 0.
1 – 清空页面缓存.
2 – 清空inodes(索引) 和 目录树 缓存
3 – 清空所有缓存.

查看缓存的命令
 
  free -m
 
    其中buff/cache项为缓存占用
 
清理缓存的命令 
 

echo 1 > /proc/sys/vm/drop_caches
echo 2 > /proc/sys/vm/drop_caches
echo 3 > /proc/sys/vm/drop_caches

 

THE END
点赞0 分享
抢沙发
头像
提交
头像

昵称

取消
昵称表情

    暂无评论内容