From cf6f6f5085c6f17f8096b5eb721b97f224b22252 Mon Sep 17 00:00:00 2001 From: Michael Boniface <mjb@it-innovation.soton.ac.uk> Date: Wed, 18 Dec 2019 16:36:10 +0000 Subject: [PATCH] Update install-neo4j.sh --- scripts/clmc-service/install-neo4j.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/clmc-service/install-neo4j.sh b/scripts/clmc-service/install-neo4j.sh index d53d7bf..6da592a 100755 --- a/scripts/clmc-service/install-neo4j.sh +++ b/scripts/clmc-service/install-neo4j.sh @@ -42,7 +42,7 @@ # https 7473 sudo apt update -o Acquire::CompressionTypes::Order::=gz -sudo apt install wget openjdk-11-jre-headless cypher-shell -y +sudo apt install wget openjdk-8-jdk -y # configure apt wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add - @@ -61,7 +61,7 @@ echo "neo4j ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers # run as neo4j. hence the weird su neo4j -c "sudo..." echo "----->Installing neo4j" -su neo4j -c "sudo apt-get install neo4j=1:3.4.0 -y" +su neo4j -c "sudo apt-get install cypher-shell=1.1.12 neo4j=1:3.4.0 -y" su neo4j -c "sed -i s/\#dbms.connectors.default_listen_address=0.0.0.0/dbms.connectors.default_listen_address=0.0.0.0/g /etc/neo4j/neo4j.conf" su neo4j -c "sed -i s/\#dbms.connector.bolt.listen_address=:7687/dbms.connector.bolt.listen_address=0.0.0.0:7687/g /etc/neo4j/neo4j.conf" -- GitLab