Memory leak

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Memory leak
# 15  
Old 05-30-2011
Weird. Your system is 100% idle. That should be a load average of 0, not 1...

I don't suppose you rebooted your system or restarted any services? Is the problem still happening?
# 16  
Old 05-30-2011
i am not rebooted my system or services.
if i use command "sync ; echo 3 > /proc/sys/vm/drop_cache" then it will show the full memory. after 2, 3 hour it will again use.
# 17  
Old 05-30-2011
Quote:
Originally Posted by reply.ravi
i am not rebooted my system or services.
Is the problem continuing to happen?
Quote:
if i use command "sync ; echo 3 > /proc/sys/vm/drop_cache" then it will show the full memory. after 2, 3 hour it will again use.
Quote:
Originally Posted by rrstone
Linux uses every byte of memory available for buffers and caches . 95% usage is good , actually .
Quote:
Originally Posted by rrstone
6GB of total 8GB used in cache . Looks memory is not a problem here .
Quote:
Originally Posted by Corona688
This is the usual "oh my god linux uses free memory for cache" freakout. Cached memory counts as free memory.
Quote:
Originally Posted by Corona688
Cache is still "free" memory
Quote:
Originally Posted by Corona688
Cache is cache. Whenever linux uses the disk it stuffs disk contents into memory in case it needs them again. It gives them up as easily as free memory.
Quote:
Originally Posted by Corona688
We've already been over this. You just had the usual "oh my god linux uses free memory as cache" newbie freakout. Lots of memory being cached is completely normal, even expected behavior. If none of your other servers have any memory used as cache, they are the ones that have something wrong with them. Cache is good. Cache makes your system faster. Cache is also still "free" memory that your server will give up and hand over to programs should they ask for it.
Quote:
Originally Posted by Corona688
This problem is completely unrelated to memory. It has 6 gigabytes of free memory. The memory's fine, or was until you started messing with it.
You are NOT running out of memory already! The high cache isn't causing the problem! Stop messing with your VM modes!

Last edited by Scott; 05-31-2011 at 04:02 PM..
# 18  
Old 05-30-2011
so sir,
where is the problem ? is that everything is fine ?
# 19  
Old 05-30-2011
I'm not saying everything is fine. I'm saying that whatever it is, it's not memory. Something may be causing a lot of disk access, which may create a lot of cache entries, but that's a symptom and not the cause; cache doesn't actually hurt you.

I've asked several times now. What exactly is your server serving?

The high load average is odd, especially when there's no obvious reason for it. Keep checking top once in a while, see if anything appears.
# 20  
Old 05-30-2011
it is http server, but currently it is only stand alone server...
# 21  
Old 05-30-2011
24.5.*Performance Tuning

?

---------- Post updated at 08:45 PM ---------- Previous update was at 08:37 PM ----------

1.83.*httpd
?
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