Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted from v. 5

Complete Redis guide can be found from https://redis.io/

...

As an administrator install latest stable Redis by compiling it from http://download.redis.io/

Do all these steps in all Redis instances.

...

Download and install Redis in all instances

...

Code Block
# Be root
mkdir -p /usr/local/src/redis
cd /usr/local/src/redis
wget http://download.redis.io/releases/redis-6.2.8.tar.gz
tar xvf redis-6.2.8.tar.gz
cd redis-6.2.8
make
make test
make install
ln -s /usr/local/bin/redis-cli /bin/redis-cli

...

Info
titleAdditional failover addresses

Ubisecure SSO only accepts one address to connect to Redis. However, if the single Redis instance is reachable when SSO starts, it will then receive all Redis instances and there is no single point of failure after initial connection is established.

Remove Redis as a session storage

To return SSO to use the default session storage UbiloginDirectory, you only need to delete the ubiloginServiceDN attribute from the cn=ServerSession,ou=System entry.

...