
- Neo4j CQL Write Clauses
- Neo4j - Merge Command
- Neo4j - Set Clause
- Neo4j - Delete Clause
- Neo4j - Remove Clause
- Neo4j - Foreach Clause
- Neo4j CQL Read Clause
- Neo4j - Match Clause
- Neo4j - Optional Match Clause
- Neo4j - Where Clause
- Neo4j - Count Function
- Neo4j CQL General Clauses
- Neo4j - Return Clause
- Neo4j - Order By Clause
- Neo4j - Limit Clause
- Neo4j - Skip Clause
- Neo4j - With Clause
- Neo4j - Unwind Clause
- Neo4j CQL Functions
- Neo4j - String Functions
- Neo4j - Aggregation Function
- Neo4j CQL Admin
- Neo4j - Backup & Restore
- Neo4j - Index
- Neo4j - Create Unique Constraint
- Neo4j - Drop Unique
- Neo4j Useful Resources
- Neo4j - Quick Guide
- Neo4j - Useful Resources
- Neo4j - Discussion
Neo4j - Zip Environment Setup
In this chapter, we will discuss how to install Neo4j Database server by using ZIP file. If you want to install Neo4j Database server with exe file format, please refer previous chapter.
Step 1 - Download the latest Neo4j Server installation file from Neo4j website:
http://www.neo4j.org/download
Here we can find latest version in exe format. So click on "Other Versions" link provided in this page

Step 2 - Here we can see all versions of neo4J Software in both exe or zip formats

Step 3 - Based on your OS configurations, click on 64 bit or 32 bit link provided in this page
We are going to click on "64" link to download 64-bit OS zip file

Step 4 - Extract this file to our required file system.
Then this folder looks like as show below

Step 5 - Add the following System Variables
set NEO4J_HOME=C:\neo4j-community-2.1.3
set PATH=C:\neo4j-community-2.1.3\bin;%PATH%
Step 6 - Check your System variables are updated properly or not
Open new command prompt and check the below.

If it displays recently set values, then it is good to go. Your configuration is done successfully.
Step 7 - Start the server by using Neo4j.bat file

Open command prompt. Type "Neo4j.bat" and hit "Enter key".


This window opens another empty window. Once it starts database server successfully, it show the below message
[http://localhost:7474/]

If we want to shutdown this server, just click this empty window
Use CTRL + C command to shutdown the server.
By default this zip installation will create database at ${NEO4J_HOME}/data folder as shown below.

If we want to change this database folder name, go to ${NEO4J_HOME}/conf folder

Open neo4j-server.properties file in any text editor

Change the default value of the following property to your required directory
org.neo4j.server.database.location=data/graph.db