centOS memory leak - MEGABYTES per day

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat centOS memory leak - MEGABYTES per day
# 1  
Old 04-11-2011
centOS memory leak - MEGABYTES per day

hi
i've notice a huge problem on my newly installed centOS server and i have no idea how to solve it and where to start..
memory on server 3 GB and it goes down, down, down..
after reboot it shows 71mb used
after a hour its 76mb
and after 24h it's around 200
later = more

i have NO idea where goes this mem..
i've checked ps -AF (no info in SZ column about where so much memory is hiding)
i did shutdown all services (atm there only: crond, haldaemon, messagebus, network, rawdevices, sshd, syslog and some dm-raid45 which i have no idea how to shut down (i have no raid but it just loading on startup even blacklisted in /etc/modprobe.d/blacklist))
still! system loosing memory in nowhere

wtf & what to do?

Linux 2.6.18-194.32.1.el5 #1 SMP Wed Jan 5 17:53:09 EST 2011 i686 i686 i386 GNU/Linux
tip78
# 2  
Old 04-11-2011
How do you check the memory usage? Can you post the output of the command used?
# 3  
Old 04-11-2011
free or top

Code:
# free
             total       used       free     shared    buffers     cached
Mem:       3114464      78028    3036436          0      13680      28328
-/+ buffers/cache:      36020    3078444
Swap:      5245212          0    5245212

that's 1 hour 7 minutes uptime
after reboot was 71536 and i did absolutely nothing on server for that hour
tip78
# 4  
Old 04-11-2011
The "used" number includes the values for buffers and caches, and isn't limited to memory used by applications alone. Buffers are primarily used for communication between processes (using pipes) and network buffers, while the cache is used to keep file contents in the fast-access RAM, instead of reading the much slower disk all the time. Linux tries to use as much memory as possible for buffers and cache in order to speed up processing and making the most of the expensive memory.

To check this, run echo 3 > /proc/sys/vm/drop_caches, which should drop the numbers back to near zero.
# 5  
Old 04-11-2011
allright, thanks for explanation
now there's 44mb only used ^^

2 questions:
is number '3' means something or i can use any number/symbol ?
if linux marks this memory as 'used' - means other programs can't use it and i should use cron all the time to 'drop near zero' these numbers ?

P.S. freebsd not does this btw - that's why i'm kinda surprised
also didn't saw these on mandriva

---------- Post updated at 04:26 PM ---------- Previous update was at 02:18 PM ----------

this is the link about 'linux ate my ram' for newbies
Help! Linux ate my RAM!

Last edited by tip78; 04-11-2011 at 07:31 AM..
tip78
# 6  
Old 04-11-2011
Linux says it's used (meaning it's allocated), but it has a lower priority than application memory. Should applications require more space, the buffer and cache sizes are gradually reduced, and the free space is made available.

The '3' tells the kernel (to which /proc is the interface) to drop all file buffers and filesystem caches that aren't "dirty" (modified in memory only; not yet written to disk). There's a description here. But again, it's not really required to clear that memory, since it's re-allocated to applications should they need it.
# 7  
Old 04-11-2011
Quote:
Originally Posted by tip78
allright, thanks for explanation
now there's 44mb only used ^^

2 questions:
is number '3' means something or i can use any number/symbol ?
You really, really don't want to do that. Caches are good. Caches make things faster. Linux doesn't have to do the same disk accesses over and over. And the memory is still 'free', Linux will give up caches and buffers as readily as 'free' RAM. Any ram sitting around doing nothing is wasted, after all!

In short, don't panic, do a little research, and always find out what you're doing before you punch in someone else's advice.

Yes, the '3' means something. Different numbers refer to different VM modes, it won't take just anything. It also goes away on reboot, so if you forget what it was before, a reboot will undo what you did.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Red Hat

Memory leak

Hi all I am using RED HAT 5.4, and i am getting memory uses problem. when i use "sync;echo 3 > /proc/sys/vm/drop_cache" command the memory will release after 2,3 hour memory show 95%. pls suggest right way. thanks (37 Replies)
Discussion started by: reply.ravi
37 Replies

2. Programming

Memory Leak

Hi, I am trying a database server which keeps a B+ plus tree structure and works on it. I am trying to find the memory used/leak while executing this process. I check the memory leak by using ps uax command. When i execute a delete query i am sure that my code frees up the existing... (9 Replies)
Discussion started by: kumaran_5555
9 Replies

3. IP Networking

memory leak?

Hi All, my client server application can work in two modes: 1) one direction - only client sends msgs to server 2) two directions - server gives 'answers' to client. when program run in the first mode it looks OK, but when server answers to client than client's application exit its... (2 Replies)
Discussion started by: lenna
2 Replies

4. UNIX for Advanced & Expert Users

Need to create a memory leak

Hi. This might be a strange request, but does anyone have any idea on a simple shell script that would use more and more memory as it ran? Like a purposeful leak. I want to test the behaviour of an already running program when the machine runs out of memory. Thanks! (4 Replies)
Discussion started by: rebelbuttmunch
4 Replies

5. UNIX for Advanced & Expert Users

Memory leak in pthread

helo frnds, I am using RHEL5 and C lang for development. I am getting some memory leak problem in pthread. I hav developed a program which creates two threads for listening purpose on two diff ports. both the child threads are doing same job but on diff port no. I am using... (4 Replies)
Discussion started by: mindTeaser
4 Replies

6. Programming

Memory LEAK with pthreads

I have this code... #include <stdio.h> #include <iostream> #include <pthread.h> static void* cliente(void *datos); int main() { pthread_attr_t tattr; int ret; size_t size = PTHREAD_STACK_MIN + 0x0100; ret = pthread_attr_init(&tattr); ret =... (8 Replies)
Discussion started by: JEscola
8 Replies

7. UNIX for Advanced & Expert Users

Memory leak while using pthread_cancel()

I tried to execute a sample pthread program to cancel a newly created one using pthread_cancel(). but using valgrind on my code shows some memory leak. My Code: #include "iostream" #include "unistd.h" #include "pthread.h" #include "signal.h" using namespace std; void handler(int); void*... (4 Replies)
Discussion started by: kcr
4 Replies

8. UNIX for Advanced & Expert Users

Check memory leak

I am running c++ code on AIX unix.I have a doubt that my code is using some memory but it is not clearing that.Some time i am getting heap allocation problem.In my code i am not using any malloc,new functions also i am justing using pointers and arrays. Is there any way i can find out if the... (2 Replies)
Discussion started by: ukatru
2 Replies

9. Programming

about virtual memory and memory leak

Hi, First of all I appreciate this group very much for its informative discussions and posts. Here is my question. I have one process whose virtual memory size increases linearly from 6MB to 12MB in 20 minutes. Does that mean my process has memory leaks? In what cases does the... (4 Replies)
Discussion started by: shriashishpatil
4 Replies
Login or Register to Ask a Question