Skip to content

Instantly share code, notes, and snippets.

@alberto1el
Last active August 29, 2015 14:01
Show Gist options
  • Save alberto1el/966787c2c77d47148520 to your computer and use it in GitHub Desktop.
Save alberto1el/966787c2c77d47148520 to your computer and use it in GitHub Desktop.
Instalacion de Neo4j en Ubuntu o debian (on vagrant box)
#vagrant box: box: puphpet/ubuntu1204-x64
# box_url: puphpet/ubuntu1204-x64
#From: http://debian.neo4j.org/
#Neo Technology provides this Debian repository, to make it easy to install Neo4j. There are 3 repositories:
#testing
# Milestone builds for the upcoming Neo4j release.
#stable
# The current stable Neo4j release. You should choose this by default.
#oldstable
# The previous stable release.
wget -O - http://debian.neo4j.org/neotechnology.gpg.key| sudo apt-key add - # Import our signing key
sudo vim /etc/apt/sources.list
#add
deb http://debian.neo4j.org/repo stable/
sudo apt-get update
sudo apt-get install neo4j # Install Neo4j, community edition
You could replace stable with testing if you want a newer (but unsupported) build of Neo4j. If you'd like a different edition, you can run:
apt-get install neo4j-advanced, or
apt-get install neo4j-enterprise
When you install neo4j-enterprise you will also get neo4j-arbiter.
If you have any questions, please ask on Stack Overflow. (Remember to search first)
@alberto1el
Copy link
Author

Did install, but the ports on the vm are probably not being routed properly, since I cannot see the neo4j instance on the browser, although I can run the neo4j console

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