Working With Linux
Troubleshooting Memory UsageProcessing dying unexpectedly? Want to know if you need more memory? Check your /var/log/messages. If you see (on a 2.4.23 kernel):
Or (on a pre-2.4.23 kernel):
Or on a Xen-based VPS console:
Then your programs need more memory than they can get. Interpreting FreeTo see how much memory you are currently using, run free -m. It will provide output like:
total
used free shared buffers cached The top row ‘used‘ (85) value will almost always nearly match the top row mem value (90). Since Linux likes to use any spare memory to cache disk blocks (34). The key figure to look at is the buffers/cache row used value (46). This is how much space your applications are currently using. For best performance, this number should be less than your total (90) memory. To prevent out of memory errors, it needs to be less than the total memory (90) and swap space (9). Interpreting psIf you want to see where all your memory is going, run ps aux. That will show the percentage of memory each process is using. You can use it to identify the top memory users (usually Apache, MySQL and Java processes). For example in this output snippet:
USER PID %CPU %MEM VSZ RSS TTY STAT
START TIME COMMAND We can see that java is using up 39.2% of the available memory. Interpreting vmstatvmstat helps you to see, among other things, if your server is swapping. Take a look at the following run of vmstat doing a one second refresh for two iterations.
The first row shows your server averages. The si (swap in) and so (swap out) columns show if you have been swapping (i.e. needing to dip into ‘virtual‘ memory) in order to run your server‘s applications. The si/so numbers should be 0 (or close to it). Numbers in the hundreds or thousands indicate your server is swapping heavily. This consumes a lot of CPU and other server resources and you would get a very (!) significant benefit from adding more memory to your server. Some other columns of interest: The r (runnable) b (blocked) and w (waiting) columns help see your server load. Waiting processes are swapped out. Blocked processes are typically waiting on I/O. The runnable column is the number of processes trying to something. These numbers combine to form the ‘load‘ value on your server. Typically you want the load value to be one or less per CPU in your server. The bi (bytes in) and bo (bytes out) column show disk I/O (including swapping memory to/from disk) on your server. The us (user), sy (system) and id (idle) show the amount of CPU your server is using. The higher the idle value, the better. Resolving: High Java Memory UsageJava processes can often consume more memory than any other application running on a server. Java processes can be passed a -Xmx option. This controls the maximum Java memory heap size. It is important to set a limit on the heap size, otherwise the heap will keep increasing until you get out of memory errors on your VPS (resulting in the Java process - or even some other, random, process - dying. Usually the setting can be found in your /usr/local/jboss/bin/run.conf or /usr/local/tomcat/bin/setenv.sh config files. And your RimuHosting default install should have a reasonable value in there already. If you are running a custom Java application, check there is a -XmxNNm (where NN is a number of megabytes) option on the Java command line. The optimal -Xmx setting value will depend on what you are running. And how much memory is available on your server. From experience we have found that Tomcat often runs well with an -Xmx between 48m and 64m. JBoss will need a -Xmx of at least 96m to 128m. You can set the value higher. However, you should ensure that there is memory available on your server. To determine how much memory you can spare for Java, try this: stop your Java process; run
Resolving: High Spam Assassin Memory UsageAre you running a Spam Assassin ‘daemon‘? It can create multiple (typically 5) threads/processes and each of those threads can use a very large amount of memory. SpmaAssassin works very well with just one thread. So you can reduce the ‘children‘ setting and reclaim some memory on your server for other apps to run with.
Another thing to check with spamassassin is that any /etc/procmailrc entry only does one spamassassin check at a time. Otherwise if you receive a batch of incoming email they will all be processed in parallel. This could cause your server CPU usage to spike, slowing down your other apps, and it may cause your server to run out of memory. To make procmailrc run only one email at a time through Spamassassin use a lockfile on your recipe line. e.g. change the top line of:
To:
Resolving: High Apache Memory UsageApache can be a big memory user. Apache runs a number of ‘servers‘ and shares incoming requests among them. The memory used by each server grows, especially when the web page being returned by that server includes PHP or Perl that needs to load in new libraries. It is common for each server process to use as much as 10% of a server‘s memory. To reduce the number of servers, you can edit your httpd.conf file. There are three settings to tweak: StartServers, MinSpareServers, and MaxSpareServers. Each can be reduced to a value of 1 or 2 and your server will still respond promptly, even on quite busy sites. Some distros have multiple versions of these settings depending on which process model Apache is using. In this case, the ‘prefork‘ values are the ones that would need to change. Note: httpd.conf should be tuned correctly on our newer WBEL3 and FC2 distros. Apache is not installed by default on our Debian distros (since some people opt for Apache 2 and others prefer Apache 1.3). So this change should only be necessary if you have a Debian distro. Resolving: High MySQL Memory UsageOur rpm based distros (e.g. RH9 and WBEL3) have MySQL preinstalled but not running. Our pre-install uses a memory efficient /etc/my.cnf file. If you install MySQL on a Debian server, edit the key_buffer_size setting in /etc/mysql/my.cnf. A small value like 2M often works well. For an ultra-tiny setup add or change the follow entries to the mysqld section:
Troubleshooting Irregular Out Of Memory ErrorsSometimes a server‘s regular memory usage is fine. But it will intermittently run out of memory. And when that happens you may lose trace of what caused the server to run out of memory. In this case you can setup a script (see below) that will regularly log your server‘s memory usage. And if there is a problem you can check the logs to see what was running.
Just Add MemoryA simple solution to resolving most out of memory problems is to add more memory. If you‘d like to increase the memory on your VPS, just send us a support ticket and let us know how much memory you need (per the pricing here). |
|