Install and Secure Redis on CentOS 7 Rumi, July 21, 2021 Step 1 – Install and Enable Remi Repository Firstly, we will add the Remi repository to the CentOS 7 system. The Remi repository provides the latest version of Redis package for our installation. Before adding the Remi repository, let’s install the EPEL repository and yum utility packages. sudo yum install… Continue Reading
Install Redis on Ubuntu 18.04 & 16.04 LTS Rumi, May 23, 2020 Step 1 – Prerequsities Log in to your system with sudo privilege account using shell access, to which you need to install Redis. ssh ubuntu@remote Update the apt-get packages index files and also update existing packages to the newest versions by using the following commands: sudo apt-get update sudo apt-get… Continue Reading
Install Redis Server and PHP-Redis on Debian or Ubuntu System Rumi, April 20, 2018 you can install the phpredis extension from the Ubuntu respositories. First, if you don’t have it installed already, let’s install Redis: sudo apt-get install redis-server After we get Redis installed (and/or verified that it was installed), we can install the PHP module for Redis: sudo apt-get install php5-redis After the module is… Continue Reading