First, you have to update the server: sudo apt-get update
Because there is a problem with the "add-apt-repository: command not found" we have to install a little package: sudo apt-get install python-software-properties
The next step is to add the Java Repository sudo add-apt-repository ppa:webupd8team/java
Update the package-list: sudo apt-get update
Then install Java: sudo apt-get install oracle-java7-installer
Because the Neo4J-Server runs only under "localhost:7474" you need get access over the webinterface by using HTTP. Go to the directory: conf
If you don't have install the Nano-Editor: sudo apt-get install nano
Open the propertie-file sudo nano neo4j-server.properties
and uncommend the line org.neo4j.server.webserver.address=0.0.0.0, like this:
# http port (for all data, administrative, and UI access)
org.neo4j.server.webserver.port=7474
#let the webserver only listen on the specified IP. Default#is localhost (only accept local connections). Uncomment to allow#any connection.
org.neo4j.server.webserver.address=0.0.0.0