Table of Contents

Memcached

General Information

Memcached is a “distributed memory object caching system”. Useful for speeding up web applications by caching database lookups.

Official Site: http://www.memcached.org/

Checklist


Install Memcached

  1. Memcached is in EL 7's base repo. If you are using EL 5/6, you will need to add the EPEL repo.
    1. Add the EPEL repo
  2. Install memcached
    yum install memcached
  3. Start and enable the service
    1. EL 6
      service memcached start
      chkconfig memcached on
    2. EL 7
      systemctl start memcached
      systemctl enable memcached

Configure Memcached

Secure Memcached

Memcached does not have any application authentication, so you should configure the memcached server with firewall rules to only allow certain sources to utilize it on tcp and udp port 11211 (the default port).