Page 1 of 1

problem RAM , up, up, up

Posted: Tue Jan 31, 2017 10:03 pm
by flacosa
Update to 9.8.17 the ram of my servers constantly goes up
Server 1
Image

Server 2
Image



any ideas

Thanks

Re: problem RAM , up, up, up

Posted: Wed Feb 01, 2017 2:51 pm
by skurudo
Unfortunately there is a bug in current version. New memory function ignores available cached/buffered memory. I can assure you that the real memory consumption on your server hasn't changed since release. Bugfix will be available soon.

Old method:

Code: Select all

[root@r6 ~]# free -m |awk '{print $4}'|head -n3 |tail -n1
404
New method:

Code: Select all

[root@r6 ~]# free -m |grep Mem |awk '{print $4}'
98
viewtopic.php?f=10&t=4590&start=10#p53313

Re: problem RAM , up, up, up

Posted: Wed Feb 01, 2017 6:08 pm
by flacosa

Code: Select all

free -m |grep Mem |awk '{print $4}'98
Does this code solve the bug?

Re: problem RAM , up, up, up

Posted: Thu Mar 02, 2017 11:58 am
by skurudo
It's not a solution, it's explanation.