Reputation: 566
I could not find the Neo4j server version 2.0.4. The older releases that I could find are listed here https://neo4j.com/download/other-releases/. But the oldest release is 2.3.11. Does anyone know where I can find older versions?
Upvotes: 0
Views: 1485
Reputation: 19
You should try using the newest release available in the 2.x family at https://neo4j.com/download/other-releases/
There is not even a TAG for 2.0.4 in the source repository on github. https://github.com/neo4j/neo4j
Upvotes: -1
Reputation: 363
You can download Neo4j Enterprise under it's free AGPL open source license directly from Neo4j's public distribution site if you need any version before 3.3.0.
DO NOT download Neo4j Enterprise 3.3.0+ binaries from this site - because they slipped in a commercial license.
Here are the direct links:
http://dist.neo4j.org/neo4j-enterprise-2.0.4-windows.zip
http://dist.neo4j.org/neo4j-enterprise-2.0.4-unix.tar.gz
Unzip or untar it and start it up.
If you want Neo4j Enterprise open source binaries after 3.3.0 - then you can get them from my company's distribution site we set up for our US federal government agency clients.
You can also compile the packages from source up until 3.3.0 - but they removed the 'packaging instructions' for Neo4j Enterprise in 3.3.0.
Here is a blog post I wrote explaining what changes after Neo4j Enterprise 3.3.0
I would just use those links above for Neo4j's official distribution.
Upvotes: 1
Reputation: 16373
You can download Neo4j 2.0.4 source code from this link on Neo4j Github Repo, but I strongly recommend you to use the current version of Neo4j database.
Neo4j is built using Apache Maven version 3.0.x and a recent version of Java 7.
The Neo4j Browser module is built using Node.js. For skipping that part of the build, see below.
mvn clean install
will only build the individual jar files. mvn clean install -DrunITs
mvn clean install -DminimalBuild
-DskipBrowser
(note that you might not be able to build the server without it.)mvn clean install -DfullBuild
-Dlicensing.skip
to avoid problems related to line endings.-Dlicense.skip=true
Upvotes: 1