快速业务通道

图一时之快:手动释放Linux服务器内存

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-25

  在服务器运行过程中,使用free -m查看服务器内存时,经常会发现free值很小,有些同学就会很紧张,总想采取一些措施,free值看起来高一点,心里就比较爽一点.其实,个人觉得这完全是图一时之快,没什么实质性用途.

  一、大众释放内存方法

  1. 使用free -m查看剩余内存

  view plaincopy to clipboardprint?

  linux-8v2i:~ # free -m

  total used free shared buffers cached

  Mem: 3952 2773 178 0 130 1097

  -/ buffers/cache: 1545 2406

  Swap: 2055 0 2055

  linux-8v2i:~ # free -m

  total used free shared buffers cached

  Mem: 3952 2773 178 0 130 1097

  -/ buffers/cache: 1545 2406

  Swap: 2055 0 2055

  2. 执行sync命令

  使用sync命令以确保文件系统的完整性,sync 命令运行 sync 子例程,将所有未写的系统缓冲区写到磁盘中,包含已修改的 i-node、已延迟的块 I/O 和读写映射文件.

  view plaincopy to clipboardprint?

  linux-8v2i:~ # sync

  linux-8v2i:~ # sync

  3. 修改/proc/sys/vm/drop_caches

  view plaincopy to clipboardprint?

  echo 3 > /proc/sys/vm/drop_caches

  echo 3 > /proc/sys/vm/drop_caches

  说明:

  1>. /proc是一个虚拟文件系统,我们可以通过对它的读写操作作为与kernel实体间进行通信的一种手段.也就是说可以通过修改/proc中的文件,来对当前kernel的行为做出调整.也就是说我们可以通过调整/proc/sys/vm/drop_caches来释放内存.

  2>. 关于drop_caches的官方说明如下:

  Writing to this file causes the kernel to drop clean caches,dentries and inodes from memory, causing that memory to becomefree.

  To free pagecache, use echo 1 > /proc/sys/vm/drop_caches;

  to free dentries and inodes, use echo 2 > /proc/sys/vm/drop_caches;

  to free pagecache, dentries and inodes, use echo 3 >/proc/sys/vm/drop_caches.

  Because this is a non-destructive operation and dirty objects are not freeable, the user should run sync first.

  3>. Linux内核会将它最近访问过的文件页面缓存在内存中一段时间,这个文件缓存被称为pagecache.

  4.再使用free -m查看剩余内存,情况如下:

  view plaincopy to clipboardprint?

  linux-8v2i:~ # free -m

  total used free shared buffers cached

  Mem: 3952 1773 2325 0 0 80

  -/ buffers/cache: 1545 2406

  Swap: 2055 0 2055

  linux-8v2i:~ # free -m

  total used free shared buffers cached

  Mem: 3952 1773 2325 0 0 80

  -/ buffers/cache: 1545 2406

  Swap: 2055 0 2055

  二、Linux内存分析

  1. 对free -m查看结果进行分析

  view plaincopy to clipboardprint?

  linux-8v2i:~ # free -m

  total used free shared buffers cached

  Mem: 3952 2773 178 0 130 1097

  -/ buffers/cache: 1545 2406

  Swap: 2055 0 2055

  linux-8v2i:~ # free -m

  total used free shared buffers cached

  Mem: 3952 2773 178 0 130 1097

  -/ buffers/cache: 1545 2406

  Swap: 2055 0 2055

  各参数含义:

  total:总物理内存

  used:已使用内存

  free:完全未被使用的内存

  shared:应用程序共享内存

  buffers:缓存,主要用于目录方面,inode值等

  cached:缓存,用于已打开的文件

  -buffers/cache:应用程序使用的内存大小,used减去缓存值

   buffers/c

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号