起因
内存4G的Ubuntu 16.04,仅仅运行了两个容器,内存达到了90%多。
找问题
起初用top命令查看个进程运行情况与资源占用情况,毫无违和感,正在运行的程序内存占用都很低,一度让我怀疑是我的.net程序内存泄漏了。
然后用ps命令发现了其中的问题
ps aux | head -1;ps aux |grep -v PID |sort -rn -k +4 | head -20
查询到发现是 gnome-software、evolution-calendar-factory-subprocess、whoopsie这几个进程占用的内存,
百度查到是Ubuntu的错误报告程序的锅,杀掉这些进程,把report禁用即可。
sudo service apport stop
sudo vim /etc/default/apport
# set this to 0 to disable apport, or to 1 to enable it
# you can temporarily override this with
# sudo service apport start force_start=1
enabled=1