Redis - GitzJoey/DCSLab GitHub Wiki

Redis is an in-memory data structure store, used as a distributed, in-memory key–value database, cache and message broker, with optional durability. This project is dependent with Redis on the caching

Installation

  • Make sure using latest Redis
    $ dnf module list redis
    $ dnf module enable redis:6
    
  • Install
    $ dnf install redis
    
  • Make sure use VERY STRONG PASSWORD
    $ nano /etc/redis.conf
    
    requirepass <SUPER STRONG 128 RANDOM CHARS>
    

Permission

By default, SELinux does not allow Apache to make socket connections. To solve it, should run the following command first:

$ setsebool -P httpd_can_network_connect=1