linux缓冲区(buff/cache)内存占用过高解决办法
1.查看当前内存剩余
free -m
2.发现free剩余很少,buff/cache占用很高
3.安装hcache查看谁在占用
wget https://silenceshell-1255345740.cos.ap-shanghai.myqcloud.com/hcache
chmod 755 hcache && mv hcache /usr/local/bin/
hcache -top 10
3.发现是journal这个东西,这是linux系统日志,出现这种情况,一般是日志没有配置好
查看配置文件
cat /etc/systemd/journald.conf
将Storage=persistent
重启日志服务
systemctl restart systemd-journald
手动清理缓存区
echo 1 > /proc/sys/vm/drop_caches
再次free -m 查看