DEV Community

Amber IT
Amber IT

Posted on

Centos 7 Install Redis cache

When your project is growing you will need a proper cache, now there are several different options available in the market including services like Cloudflare, Akamai, and Imperva But if your project isn't that big and you don't want to pay or you want the cache to be stored on your infrastructure, therefore we have several options, but today we will have a look at Redis free solution.

Redis is a useful open-source in-memory data structure storage. It can be used in many possible ways for example it can be used as a database, cache, and message broker and supports various data structures such as Strings, Hashes, Lists, Sets, etc. It provides high availability via Redis Sentinel including monitoring, notifications Automatic failover. It also can provide automatic partitioning across multiple Redis nodes if you have installed and configured them with Redis Cluster.

We at www.amberit.org, have created automatically installation script for Redis, this script we have hosted on both our hosted GIT and Github difference is that our hosted GIT is free of use and with unlimited abilities.

To fastly install Redis without spending a lot of time copy-paste commands Just run in the terminal this command as a root user and wait for 1 minute until all is installed, at the end you will see our www.amberit.org message with success once all is done. What is in the script you can find in both Gits mentioned below and also in our full article.

Command for automaticall installation:

sudo yum -y install git ; git clone https://www.amberit.in/linux-scripts/centos-7-install-redis.git /srv/ ; chmod +x /srv/amberit-redis.sh ; /srv/amberit-redis.sh ; rm -rf /srv/amberit-redis.sh

Full article: https://www.amberit.org/k1/centos-7-install-redis-cache/

The script in our GIT where we maintain it:
https://www.amberit.in/linux-scripts/centos-7-install-redis

Git, that is free of charge without limitations and soon with test servers: https://www.amberit.in

The script in our GitHub repo: https://github.com/rpdataSIA/Centos-amberit.org-redis

Hosting, domain name registration, Digital office, VPS, VDS: https://github.com/rpdataSIA/Centos-amberit.org-redis

Top comments (0)