How to install Memcached on CentOS?

Memcached is very fast caching system for MySQL. It is a distributed, high-performance, in-memory caching system that is primarily used to speed up sites that make heavy use of databases.

Steps -

1. Firstly clean-up yum -
yum clean all

2. Update the packages -
yum -y update

3. Install memcached and it's related packages -
yum -y install memcached

Once done with installation we can proceed with the configuration -

1. You can fire below command to check the information of memcached command -
memcached -h

2. Configuration file path is as follow -
/etc/sysconfig/memcached

Memcached will start on port 11211 by default as per the default configuration file as follow -
PORT=”11211″
USER=”memcached”
MAXCONN=”1024″
CACHESIZE=”64″

If you want to edit the any value in file memcached file then follow below steps -
vi /etc/sysconfig/memcached

Update the value which you'd like to update and save the configuration file. 

3. Restart the memcached service -
service memcached restart 

4. Start the web server.  For Apache web server fire below command -
service httpd restart

5. Check the status of memcached -
service memcached status

6.  Stop memcached service -
service memcached stop

All done. Smile
  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

How to install phpMyAdmin with Apache on a CentOS 7 server?

phpMyAdmin used to provide graphical user interface for your databases. Accessing or performing...

How to perform the Linux Sever Hardening?

1. Check the hostname is setup or not - hostname 2. Check the IP address is assigned to hostname...

How to install Postfix on CentOS?

Postfix is an open-source Mail Transport Agent (MTA), which supports protocols like LDAP, SMTP...

How to get files and folders from a remote server using FTP?

Let's make a quick start by looking at the various commands to get files and folders from a...

How to setup PPTP VPN?

A Point-To-Point Tunneling Protocol (PPTP) allows you to implement your own VPN very quickly, and...

Powered by WHMCompleteSolution