Memory leak

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Memory leak
# 1  
Old 05-30-2011
Question 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
# 2  
Old 05-30-2011
Linux uses every byte of memory available for buffers and caches .
95% usage is good , actually . I bet most of it used in FS cache .
# 3  
Old 05-30-2011
but i have 11 more red hat boxes but they not uses such mount of memory.
when it use 95 % memory its working become slow.

Last edited by reply.ravi; 05-30-2011 at 11:46 AM..
# 4  
Old 05-30-2011
Please post exactly what the problem is, not just "memory leak". Please post what numbers you're getting from what. cat /proc/meminfo would be a good start.

If it is a memory leak and not the usual "oh my god linux uses free memory for cache" freakout, you'll need to track down what's leaking memory, it's probably not "linux" that's leaking. ps aux | less would be a start, it'll show you a list of processes and how much memory they're using.
# 5  
Old 05-30-2011
i uses ps aux | less but it shows. Zero in all process. and see below meminfo
Code:
# cat /proc/meminfo
MemTotal:      7805952 kB
MemFree:        127120 kB
Buffers:        300884 kB
Cached:        6484184 kB
SwapCached:          0 kB
Active:        6390728 kB
Inactive:       645928 kB
HighTotal:           0 kB
HighFree:            0 kB
LowTotal:      7805952 kB
LowFree:        127120 kB
SwapTotal:    16892336 kB
SwapFree:     16892152 kB
Dirty:             132 kB
Writeback:          28 kB
AnonPages:      251588 kB
Mapped:          50312 kB
Slab:           356272 kB
PageTables:      14256 kB
NFS_Unstable:        0 kB
Bounce:              0 kB
CommitLimit:  20795312 kB
Committed_AS:  1069076 kB
VmallocTotal: 34359738367 kB
VmallocUsed:     12008 kB
VmallocChunk: 34359726335 kB

check the free memory its all about use.

Last edited by Scott; 05-30-2011 at 03:11 PM.. Reason: Please use code tags...
# 6  
Old 05-30-2011
6GB of total 8GB used in cache . Looks memory is not a problem here .
# 7  
Old 05-30-2011
Quote:
Originally Posted by reply.ravi
i uses ps aux | less but it shows. Zero in all process.
Could you post it anyway? Also try scrolling to the right to see if there's anything off the screen.
Code:
 and see below meminfo 

# cat /proc/meminfo
MemTotal:      7805952 kB
MemFree:        127120 kB
Buffers:        300884 kB
Cached:        6484184 kB

This is the usual "oh my god linux uses free memory for cache" freakout. Cached memory counts as free memory. All that messing you're doing with vm modes is only hurting the system, it may actually be causing the problem, you should undo it. The problem isn't related to low memory.

Last edited by Corona688; 05-30-2011 at 12:35 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

Help regarding memory leak in this C program

I have written this code in C which reads a very large collection of text files and does some processing. The problem with this code is that there are memory leaks which I am not able to figure out as to where the problem is. When I run this code, and see the memory usage using top command, then I... (7 Replies)
Discussion started by: shoaibjameel123
7 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. Programming

memory leak problem

hi all Can any one plz explain me about memory leak problem Thankx (5 Replies)
Discussion started by: sonali
5 Replies

4. 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

5. 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

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