The server is running a day and got 90% RAM used.
Re: The server is running a day and got 90% RAM used.
If you look only to graph, then there is no prob.. it is but not with memory.kudouyuzi wrote: This is problem is from after update 0.9.8-17 (The version at the time of installation is 0.9.8-16)
viewtopic.php?f=10&t=4590&start=10#p53313Unfortunately 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:New method:Code: Select all
[root@r6 ~]# free -m |awk '{print $4}'|head -n3 |tail -n1 404
Code: Select all
[root@r6 ~]# free -m |grep Mem |awk '{print $4}' 98
Re: The server is running a day and got 90% RAM used.
please hurryskurudo wrote:If you look only to graph, then there is no prob.. it is but not with memory.kudouyuzi wrote: This is problem is from after update 0.9.8-17 (The version at the time of installation is 0.9.8-16)
viewtopic.php?f=10&t=4590&start=10#p53313Unfortunately 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:New method:Code: Select all
[root@r6 ~]# free -m |awk '{print $4}'|head -n3 |tail -n1 404
Code: Select all
[root@r6 ~]# free -m |grep Mem |awk '{print $4}' 98
Re: The server is running a day and got 90% RAM used.
viewtopic.php?f=10&t=13770&p=56154#p56152flacosa wrote:And have any solutions?
Re: The server is running a day and got 90% RAM used.
A temporary solution can be run in cron: sudo sysctl -w vm.drop_caches=3 to free memory until it is solved.kudouyuzi wrote:sorry I have no idea about this problem.flacosa wrote:And have any solutions?
Last edited by flacosa on Wed Feb 01, 2017 3:51 pm, edited 1 time in total.
Re: The server is running a day and got 90% RAM used.
Thx guyflacosa wrote:A temporary solution can be run in cron: sudo sysctl -w vm.drop_caches = 3 to free memory until it is solved.kudouyuzi wrote:sorry I have no idea about this problem.flacosa wrote:And have any solutions?
Re: The server is running a day and got 90% RAM used.
yes it works !
any fix or update to automatize it ?
any fix or update to automatize it ?
Re: The server is running a day and got 90% RAM used.
Cron as usually?