Creatio administration
This documentation is valid for Creatio version 7.15.0. We recommend using the newest version of Creatio documentation.

Set up Creatio caching server (Redis) on Linux

The Redis server package is available in the standard Debian repositories. To install Redis on Debian and Debian derivatives (such as Ubuntu and Linux Mint):

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

Did you find this information useful?

How can we improve it?