Memcached Server Setup

      Memcached 

What is Memcached:

Memcached is a free and open-source high-performance memory caching system. It’s typically used to cache database data, API calls, or page rendering chunks in RAM to increase the application performance. 

We are using Centos7 for Memcached  mc01.

 Follow the below strep one by one to download Memcached on VM.


To go inside the vagrant Memcached.

vagrant ssh mc01

Go to root user

sudo -i or Sudo su

To setup repository

yum install -epel-release -y

yum install Memcached -y


Memcached:

    The Memcached is a distributed memory object caching system. Even though Memcached is intended to speed up dynamic web applications, it is actually generic in nature. Memcached improves the loading speed of dynamic database-driven websites efficiently. Memcached works on most of the Linux and BSD-like systems. There are also windows builds available but no official support is available for these build versions.

Start & Enable Memcached

systemctl start Memcached

systemctl enable Memcached

systemctl status Memcached.

Exit from the root user 

Logout from Memcached mc01

Next we gonna download RabbitMQ. Click the link below to install the server

RabbitMQ