简单介绍Linux内存手动释放方法

一、发现问题

发现服务器很慢,进行了性能分析,发现内存几乎使用满了

image

但实际的应用并没有使用多少内存

image

所以想到需要释放内存

二、释放内存

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

view plaincopy to clipboardprint?

[root@di_server ~]# free -m
total used free shared buffers cached
Mem: 15951 15794 156 0 342 11766
-/+ buffers/cache: 3685 12265
Swap: 0 0 0

2. 执行sync命令

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

view plaincopy to clipboardprint?

[root@di_server ~]# sync

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

view plaincopy to clipboardprint?

[root@di_server ~]# 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.

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

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

view plaincopy to clipboardprint?

[root@di_server ~]# free -m
total used free shared buffers cached
Mem: 15951 3235 12716 0 2 23
-/+ buffers/cache: 3208 12743
Swap: 0 0 0

Linux服务器内存释放工作也就轻而易举的完成了。

三、问题解决

image

你可能感兴趣的:(简单介绍Linux内存手动释放方法)