-
Notifications
You must be signed in to change notification settings - Fork 19
Redis
GitzJoey edited this page Apr 24, 2022
·
7 revisions
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
- 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>
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