From 003cf5c6f3663ebb86bb072dd607eee98ac562a3 Mon Sep 17 00:00:00 2001 From: Coleman Kane Date: Mon, 27 Jun 2022 19:40:32 -0400 Subject: [PATCH] Update redis to 7.0.2 --- opencti_scripts/installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opencti_scripts/installer.sh b/opencti_scripts/installer.sh index 07558a1..79e9c3e 100644 --- a/opencti_scripts/installer.sh +++ b/opencti_scripts/installer.sh @@ -212,7 +212,7 @@ typedb_core_server_version="2.11.0" minio_dir="/opt/minio/data" # Redis -redis_ver="6.0.5" +redis_ver="7.0.2" # RabbitMQ rabbitmq_ver="3.8.34-1" @@ -436,7 +436,7 @@ fi if [[ ! -f "/etc/redis/redis.conf" ]] then cp "redis-${redis_ver}/redis.conf" "/etc/redis/redis.conf" - sed -i 's/^supervised no/supervised systemd/' "/etc/redis/redis.conf" + sed -i 's/^\#\ supervised\ .*$/supervised auto/' "/etc/redis/redis.conf" chown redis:redis "/etc/redis/redis.conf" fi