Login | Register

Documentation

Documentation -> TroubleShooting -> Increasing Memory


How to increase the memory that will be used by OpenSIPS?

Increase Private Memory Size

OpenSIPS has its own memory manager. Even if you have lot of memory in the system, OpenSIPS will use only the memory size it was configured, and you may get "out of memory" errors sooner than expected. This does not mean that there is a memory leak, but insufficient allocated size for your subscriber population. Common cases for large needs of private memory are: loading user location contacts, doing NAT pinging. Actual OpenSIPS versions overcome the first issue by implementing database FETCH support. The other cases will be taken in consideration very soon.

By default the size of private memory chunk used by each OpenSIPS process is 1 MB.

To increase the size of private memory you need to compile OpenSIPS from sources. Once you get the sources from SVN or the opensips.org's download site, do the following steps:

- edit the file "config.h" and search for the next lines:

  /*used only if PKG_MALLOC is defined*/
  #define PKG_MEM_POOL_SIZE 1024*1024

- change the value of PKG_MEM_POOL_SIZE to desired size, for example to have 4MB of private memory:

  #define PKG_MEM_POOL_SIZE 4*1024*1024

- recompile and reinstall OpenSIPS

  make all; make install;

In OpenSIPS 1.8 and higher you can increase the private memory size without recompiling, by passing the -M parameter at OpenSIPS startup. :

opensips -M 8

# this will run OpenSIPS with 8 MB of private memory per process

Increase Share Memory Size

To increase the share memory size use '-m' command line parameter of OpenSIPS.

opensips -m 256

# this will run OpenSIPS with 256MB of share memory

Manas?12 November 2010, 14:49

If you installed Opensips via an RPM on RHEL/CentOS.

You will need to change this value in /etc/init.d/opensips script.

MEMORY=1024 #configured 1 G

MEMORY=$((`echo $MEMORY | sed -e 's/[^0-9]//g'`)) [ -z "$USER" ] && USER=opensips [ -z "$GROUP" ] && GROUP=opensips [ $MEMORY -le 0 ] && MEMORY=32

Add Comment 
Sign as Author 
Enter code 446


Page last modified on August 06, 2014, at 05:05 PM