Set up Creatio caching server (Redis) on Linux
The Redis server package is available in the standard Debian repositories. This article covers installing Redis on Debian and Debian derivatives (such as Ubuntu and Linux Mint). To install Redis:
1.Log in as root:
sudo su
2.Update the package lists:
apt-get update
3.Install Redis:
apt-get install redis-server
4.Enable Redis to run as a systemd service.. To do this:
a.Open redis.conf in a text editor as root. For example, use the Nano text editor:
nano /etc/redis/redis.conf
b.Locate the “supervised no” entry. Replace the entry with “supervised systemd.”
c.Save changes and exit the editor.
5.Restart the Redis server.
systemctl restart redis-server
6.Log out from your root session:
exit
See also
•Set up Creatio application server on IIS
•Deploy Creatio .NET Core application server on Linux directly
•Deploy Creatio .NET Core application server on Linux using Docker