Install Redis on Centos 7 How To

How To install Redis on Centos 7

Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.

Install Redis with Yum

yum install redis php-pecl-redis

Enable Redis service to start on boot

systemctl enable redis-server.service

Disable Redis service from start on boot

systemctl disable redis-server.service

Start/Stop/Restart Redis

Start

systemctl start redis-server.service

Stop

systemctl stop redis-server.service

Restart

systemctl restart redis-server.service

Check if Redis is Running

Is Running

systemctl is-active redis-server.service
 
 
 
 
  • 118 Users Found This Useful
Was this answer helpful?

Related Articles

MySQL - Check Which Query is Consuming Resources

MySQL - Checking Which Query is Consuming Resources Have you ever wondered which mysql query...

Expand your bash history to 2500

Expand your .bash_history to 2500 I do alot of testing and alot of work on Centos servers. I...

How do I SSH into my VPS? (Windows/Putty)

This article will teach you how to access your server via SSH using the PuTTY client on Windows....

Reset your MySQL Admin Password

How to reset your MySQL Admin Password You have installed MySQL and now you are having a hard...

CentOS One Liner Commands

Centos Oneliners kill all pts for x in $(ps aux | grep pts| awk '{print $2}'); do kill...