Skip to content

Instantly share code, notes, and snippets.

@vlado
Last active August 5, 2016 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vlado/c19b5c1f6c4540d6605afc939fcbead2 to your computer and use it in GitHub Desktop.
Save vlado/c19b5c1f6c4540d6605afc939fcbead2 to your computer and use it in GitHub Desktop.
Install Neo4j on Semaphore CI
#! /usr/bin/env bash
set -e
source /opt/change-java-version.sh
change-java-version 8
wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
echo 'deb http://debian.neo4j.org/repo stable/' >/tmp/neo4j.list
sudo mv /tmp/neo4j.list /etc/apt/sources.list.d
sudo apt-get update
sudo apt-get install neo4j -y
echo "dbms.security.auth_enabled=false" | sudo tee -a /etc/neo4j/neo4j.conf
@vlado
Copy link
Author

vlado commented Aug 1, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment