Skip to content

Instantly share code, notes, and snippets.

@mansurali901
Last active October 17, 2017 09:56
Show Gist options
  • Save mansurali901/53257b0623f9c0ade82ed58965cbe6a7 to your computer and use it in GitHub Desktop.
Save mansurali901/53257b0623f9c0ade82ed58965cbe6a7 to your computer and use it in GitHub Desktop.
#!/bin/bash
# This script is written to install Bower Node and NPM
# on Ubuntu Server 16.04 & 14.04 LTS
# Author Mansur Ul Hasan
# Email [email protected]
echo "Downloading Meta Items..."
wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -
echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
sleep 3
echo "Updating System repositories"
apt-get update -y
sleep 3
echo "Installing Neo4J binaries...."
apt-get install neo4j -y
sleep 3
echo "Installing & starting Services"
/etc/init.d/neo4j start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment