Install Redis 7 on CentOS 7 / RHEL 7
# Update your CentOS 7 / RHEL 7
$ sudo yum -y update
# Add REMI repository
$ sudo yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
# Install Redis on CentOS 7 / RHEL 7
$ sudo yum --enablerepo=remi install redis
$ rpm -qi redis
# Start Redis Service on CentOS 7 / RHEL 7
$ sudo systemctl enable --now redis
# Enable network Listen for Redis Service (Optional)
$ sudo vi /etc/redis.conf
bind 172.21.10.11 # Bind to to your server IP
bind * -::* # To listen on all available interfaces
requirepass mypasword # Configure Redis Authentication for clients to require AUTH <PASSWORD>
appendonly yes # Set persistence mode by changing the appendonlyvalue to yes
appendfilename "appendonly.aof" # Set persistence mode by changing the appendonlyvalue to yes
# Restart redis service after making the changes
$ sudo systemctl restart redis
$ sudo systemctl status redis
# You can view the port and IP used by Redis service using the sscommand:
$ sudo ss -tunelp | grep 6379
# If you have an active firewalld service, allow port 6379
$ sudo firewall-cmd --add-port=6379/tcp --permanent
$ sudo firewall-cmd --reload
# Test connection to Redis Server
$ redis-cli
127.0.0.1:6379>
127.0.0.1:6379> AUTH mypasword
OK
127.0.0.1:6379> INFO Server
Code language: PHP (php)
How to add Sample Data in Redis?
$ redis-cli
127.0.0.1:6379> auth mypassword
127.0.0.1:6379> SET shapes:triangles "3 sides"
127.0.0.1:6379> SET shapes:squares "4 sides"
127.0.0.1:6379> GET shapes:triangles
127.0.0.1:6379> GET shapes:squares
127.0.0.1:6379> save
127.0.0.1:6379> exit
$ sudo cat /var/lib/redis/dump.rdbCode language: PHP (php)
I’m Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms.
I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.
Find Trusted Cardiac Hospitals
Compare heart hospitals by city and services โ all in one place.
Explore Hospitals