DevTech101

DevTech101

neo4j

neo4j upgrade process

#Backup tar zcf neo4j.tar neo4j # Extract new mkdir /data/neo4j;tar -zvxf install/neo4j-enterprise-2.3.0-unix.tar.gz -C /data/neo4j –strip-components=1 #Copy back DB files cp -rp /data/tmp/neo4j/data/dbms neo4j/data/. cp -rp /data/tmp/neo4j/data/graph.db neo4j/data/. cp -rp /data/tmp/neo4j/conf/ssl neo4j/conf/. # Change back perm chown -R neo:neo /data/neo4j # cd /data/neo4j/conf, modify #neo4j-server.properties org.neo4j.server.database.mode=SINGLE org.neo4j.server.webserver.address=0.0.0.0 #neo4j.properties allow_store_upgrade=true dbms.pagecache.memory=10g ############ # Start DB to complete …

neo4j upgrade process Read More »

Neo4j Installation, Configuration – 3 Node Example

How to Install and Configure a 3 node Neo4j Cluster First make sure to install the Oracle (Sun) version Java yum install java-1.8.0-openjdk.x86_64 To change the system to listen to the physical ip (not just localhost), un-comment the below neo4j/conf/neo4j-server.properties org.neo4j.server.webserver.address=0.0.0.0 To start the system in console mode – for setup/debug purpose Note: On Solaris …

Neo4j Installation, Configuration – 3 Node Example Read More »