Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update install script for version 5.0.0 #25

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions opencti_scripts/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function log_section_heading {
echo
echo "###^^^###^^^###^^^###^^^###"
date --iso-8601=seconds
echo $1
echo "$1"
echo "###^^^###^^^###^^^###^^^###"
echo
}
Expand Down Expand Up @@ -192,7 +192,7 @@ ubuntu_version=$(grep "Ubuntu " /etc/lsb-release | cut -d" " -f2 | cut -d\. -f1)
if [[ ${ubuntu_version} == 18 ]]
then
distro="bionic"
run_python="python3.7"
run_python="python3.8"
elif [[ ${ubuntu_version} == 20 ]]
then
# Using bionic since focal not avaialble yet for RabbitMQ
Expand All @@ -212,7 +212,7 @@ grakn_core_server_version="2.0.0-alpha-4"
minio_dir="/opt/minio/data"

# Redis
redis_ver="6.0.5"
redis_ver="6.2.5"

# RabbitMQ
rabbitmq_ver="3.8.5-1"
Expand All @@ -232,7 +232,7 @@ do
esac
done

opencti_ver="4.2.1"
opencti_ver="5.0.0"
opencti_dir="/opt/opencti"
opencti_worker_count=2

Expand Down