为什么我的 VPS 即使没有运行任何服务也会占用 4.5GB 的 RAM?

为什么我的 VPS 即使没有运行任何服务也会占用 4.5GB 的 RAM?

我的 VPS 占用了大量 RAM。为了找出问题所在,我几乎停止了所有服务,但 VPS 仍然占用了 4.5GB 的 RAM。VPS 在 XEN 上运行,因此 RAM 不共享。

这是停止所有服务(ssh 除外)后 free -m 的输出:

[root@node3 ~]# free -m

             total used free shared buffers cached

Mem:          6928 5510 1417 0 130 704

-/+ buffers/cache: 4676 2251

Swap:         3071 106 2965

有人能帮我吗?非常感谢。

[root@node3 custombuild]# ps aux | sort -b -k 4 | tail
acusu161  307520  0.0  0.0  94344  1828 ?        SN   14:42   0:00 sshd: acusu161@pts/2
root      301805  0.0  0.0  94344  3352 ?        SNs  14:19   0:00 sshd: acusu161 [priv]
root      307459  0.0  0.0  94344  3360 ?        SNs  14:41   0:00 sshd: acusu161 [priv]
acusu161  301833  0.0  0.0  94484  1896 ?        SN   14:19   0:00 sshd: acusu161@pts/1
acusu161  328664  0.0  0.0  95128  1748 ?        SN   16:24   0:00 sshd: acusu161@pts/4
root      328660  0.0  0.0  95128  3348 ?        SNs  16:24   0:00 sshd: acusu161 [priv]
named      10398  0.0  0.1 589860  7896 ?        Ssl  Jul23   0:02 named -u named
root      340628  0.0  0.3 127764 26884 ?        SNs  16:48   0:01 lfd - sleeping
root        6508  0.0  0.4  38936 32788 ?        S<Lsl Jul23   0:00 iscsiuio
USER         PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND

答案1

无需担心,linux 喜欢缓存东西,当新进程请求内存时,缓存将被覆盖。

您可以清除它。ymmv。

   sudo sync && sudo sysctl -w vm.drop_caches=3 && sudo sysctl -w vm.drop_caches=0 

来源:http://duopetalflower.blogspot.ca/2009/09/clearing-cache-memory-in-linux-using.html

   free && sync && echo 3 > /proc/sys/vm/drop_caches && free

来源:http://www.commandlinefu.com/commands/view/1026/empty-the-linux-buffer-cache

To free pagecache:
        echo 1 > /proc/sys/vm/drop_caches
To free dentries and inodes:
        echo 2 > /proc/sys/vm/drop_caches
To free pagecache, dentries and inodes:
        echo 3 > /proc/sys/vm/drop_caches

来源:https://stackoverflow.com/questions/8066252/invalid-argument-error-for-sysctl-vm-drop-caches-key-in-ubuntu-11-10-kernel-3

答案2

尝试安装诸如“顶部“并按内存使用率 (MEM%) 排序 (F6) 以查看哪些进程使用了​​多少内存。

相关内容