OLSPanel does not include Redis by default in its installation.
If you’d like to use Redis, you will need to install and configure it manually on your server.
The default Redis port is 6379
The default host/server is localhost (127.0.0.1)
You can install Redis with:
sudo apt install redis-server -y # Ubuntu/Debian
sudo systemctl enable redis-server
sudo systemctl start redis-server
Once installed, applications can connect to it using:
Host: 127.0.0.1
Port: 6379