Last active
June 24, 2020 18:09
-
-
Save M507/559259c30a27ba401f66f06ca36e4483 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /bin/bash | |
echo "deb http://httpredir.debian.org/debian stretch-backports main" | sudo tee -a /etc/apt/sources.list.d/stretch-backports.list | |
apt-get update | |
cd /tmp | |
wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add - | |
echo 'deb https://debian.neo4j.com stable 4.0' > /etc/apt/sources.list.d/neo4j.list | |
apt update -y | |
apt install apt-transport-https -y | |
apt install neo4j -y | |
cd /usr/bin | |
./neo4j console & | |
apt install bloodhound -y | |
bloodhound & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment