InterviewSolution
Saved Bookmarks
| 1. |
How to install Redis Ubuntu? |
|
Answer» REDIS can be installed on the Ubuntu machines by using the command:- SUDO apt-get install Redis-serverIf the user wants Redis to be installed as an object cache for Wordpress or any other PHP, then the following command can be used:- sudo apt-get install php-redisIf the user wants to configure the Redis as a cache, /etc/Redis/redis.conf FILE needs to be updated, and the TEXT editor NANO can be used for this purpose. sudo nano /etc/redis/redis.confAny text editor can be used. |
|