Configure Memcached Distributed Memory Caching System

by on June 22, 2012 · 3 comments· Last updated June 23, 2012

Memcached can speed up database driven dynamic web site. It must be deployed within trusted network where vm01 and vm02 clients may freely connect to our server. You need to type the following commands on vm03 having an IP address 192.168.1.12.

Install memcached server on vm03

Type the following yum command to install memcached server on RHEL based system:
# yum install -y memcached

Install memcached client on vm01 and vm02

You may need to install any one of the following package on vm01 and vm02 (server running php5+apache/Lighttpd):

  1. perl-Cache-Memcached : Perl client (library) to work with memcached server.
  2. python-memcached : Python client (library) to work with memcached server.
  3. php-pecl-memcache : PHP extension to work with the Memcached server.

Configure memcached

Edit /etc/sysconfig/memcached file, enter:
# vi /etc/sysconfig/memcached
Sample outputs:

PORT="11211"
USER="memcached"
MAXCONN="1024"
CACHESIZE="512"
## make sure we accept connection from vm01 and vm02 on 192.168.1.12:11211
OPTIONS="-l 192.168.1.12 -L"

Save and close the file. Start the memcached server:
# chkconfig memcached on
# /sbin/service memcached start

Edit /etc/sysconfig/iptables and make sure only vm01 and vm02 are allowed to connect to the our server:

 
## open vm01 and vm02 tcp/udp port for memcached server ##
-A INPUT -m state --state NEW -s 192.168.1.10 -m tcp -p tcp --dport 11211 -j ACCEPT
-A INPUT -m state --state NEW -s 192.168.1.11 -m udp -p udp --dport 11211 -j ACCEPT
-A INPUT -m state --state NEW -s 192.168.1.10 -m udp -p udp --dport 11211 -j ACCEPT
-A INPUT -m state --state NEW -s 192.168.1.11 -m tcp -p tcp --dport 11211 -j ACCEPT
 

Save and close the file. Restart the iptables service, enter:
# /sbin/service iptables restart
# /sbin/iptables -L -v -n

Increase file system and ports limits on vm03

For busy memcached server you need to increase system file descriptor and IP port limits:

 
# Increase system file descriptor limit to
fs.file-max = 50000
# Increase system IP port limits
net.ipv4.ip_local_port_range = 2000 65000
 

Load the changes by typing the following sysctl command to modify Linux kernel parameters at runtime:
# sysctl -p

See also


You should follow me on twitter here or grab rss feed to keep track of new changes.

This blog post is 4 of 7 in the "Run Different Linux Network Services on Separate Systems/VM" series. Keep reading the rest of the series:

{ 3 comments… read them below or add one }

1 Jalal Hajigholamali June 23, 2012 at 2:34 am

Hi,
very nice article…

Reply

2 Amit June 23, 2012 at 5:53 am

I believe the line no 2 of the client installation need to be update.

Currently its like:
python-memcached : Perl client (library) to work with memcached server.

should not be it ” python client “

Reply

3 Vivek Gite June 23, 2012 at 8:04 am

@Amit:

Thanks for the heads up!

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 13 + 2 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Tagged as:

Previous post:

Next post: