This project is a Chocolatey package to install the Beta Neo4j Community Edition onto a Windows based computer.
The chocolate package can be found at https://chocolatey.org/packages/neo4j-community
- Install Chocolatey https://chocolatey.org/
- Install OpenJDK 7 or Oracle Java 7 http://neo4j.com/docs/stable/deployment-requirements.html#_software
- Install this package. This package requried the -prelease flag
choco install neo4j-community -version 2.2.0-M04-beta -prerelease
- Open a browser to http://localhost:7474
The package supports the following parameters;
/Install:<Install Path>
Installs Neo4j to the specified directory. The default is to install to <Chocolatey Bin Root>\Neo4jCommunity
which is typically C:\tools\Neo4jCommunity
/ImportNeoProperties:<Path to file>
Copies the file specified to %NEO4J_HOME%\conf\neo4j.properties
. This is a quick way to configure the Neo4j server prior to service start. Information about the configuration file can be found at http://neo4j.com/docs/stable/server-configuration.html
/ImportNeoServerProperties:<Path to file>
Copies the file specified to %NEO4J_HOME%\conf\neo4j-server.properties
. This is a quick way to configure the Neo4j server prior to service start. Information about the configuration file can be found at http://neo4j.com/docs/stable/server-performance.html
/ImportServiceProperties:<Path to file>
Copies the file specified to %NEO4J_HOME%\conf\neo4j-wrapper.conf
. This is a quick way to configure the Neo4j Windows Service prior to service start. Information about the configuration file can be found at http://neo4j.com/docs/stable/server-performance.html
Example usage;
choco install neo4j-community -version 2.2.0-M04-beta -prerelease -packageParameters "/Install:C:\Apps\Neo /ImportNeoProperties:C:\Config\MyNeoProperites.txt /ImportNeoServerProperties:C:\Config\MyNeoServerProperites.txt"
This command will install Neo4j to C:\Apps\Neo
, import the neo4j.properties file from C:\Config\MyNeoProperites.txt
and the neo4j-server.properties file from C:\Config\MyNeoServerProperites.txt