Re: [Neo4j] Server startup using Bootstrapper

2014-03-10 Thread Kalidhakani J
> Offline<http://www.neo4j.org/events> or > Read a Book <http://graphdatabases.com> (in Deutsch<http://bit.ly/das-buch> > ) > We're trading T-shirts for cool GraphGist Models <http://bit.ly/graphgist> > > > > > > Am 07.03.2014 um 11:36 schrieb Ka

Re: [Neo4j] Server startup using Bootstrapper

2014-03-07 Thread Kalidhakani J
n-memory-server > Adapt it to your needs. > > Michael > > Am 06.03.2014 um 13:27 schrieb Kalidhakani J : > > > Thanks for ur reply. > > > > I have a server which creates a graph database using > EmbeddedDatabaseBuilder. Every time wen I need to check my graph db, I had &

Re: [Neo4j] Server startup using Bootstrapper

2014-03-06 Thread Kalidhakani J
> Am 06.03.2014 um 12:50 schrieb Kalidhakani J : > > Hi, > > I am trying to start neo4j server using , > > *org.neo4j.server.Bootstrapper* > > String[] args = new String[1]; > args[0] = "start"; > > Bootstrapper.main(args); > > When i r

[Neo4j] Server startup using Bootstrapper

2014-03-06 Thread Kalidhakani J
Server on port [7474] I have set all the properties... Am i missing anything here ?? help me.. Thanks in advance.. Regards Kalidhakani J -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving ema

[Neo4j] Server startup using BootStrapper

2014-01-26 Thread Kalidhakani J
Hi, I am trying to start neo4j server using , *org.neo4j.server.Bootstrapper* String[] args = new String[1]; args[0] = "start"; Bootstrapper.main(args); When i run the code, I get the following exception : SEVERE: java.lang.NullPointerException at java.io.File.(File.java:251) at org.neo4j.se

Re: [Neo4j] Embedded HIghlyAvailableGraphDatabase - database path

2014-01-23 Thread Kalidhakani J
instances that are already running the cluster. > > Instead, you have to make your embedded instance join the cluster as the > 4th member, with it's own copy of the database (e.g. /home/myData4/graph. > db). > > Regards, > > Lasse > > > > > On Thu, Jan 23,

Re: [Neo4j] Embedded HIghlyAvailableGraphDatabase - database path

2014-01-23 Thread Kalidhakani J
t; michael.hun...@neopersistence.com> wrote: > Make sure you have a different config for each server > > And give loadproperties the full path too > > Note that they must not share a db directory on disk > > Sent from mobile device > > Am 23.01.2014 um 09:30 schrieb Kali

Re: [Neo4j] Embedded HIghlyAvailableGraphDatabase - database path

2014-01-23 Thread Kalidhakani J
is wat not happening to me. On creating embedded instance, wat db path shld I give? Pls clear my doubt On Thu, Jan 23, 2014 at 2:19 PM, Rickard Öberg < rickard.ob...@neotechnology.com> wrote: > On 1/23/14, 16:30 , Kalidhakani J wrote: > >> In my servers I have given the path as da

Re: [Neo4j] Embedded HIghlyAvailableGraphDatabase - database path

2014-01-23 Thread Kalidhakani J
s map to the HA-DB > > Sent from mobile device > > Am 23.01.2014 um 05:36 schrieb Kalidhakani J : > > Actually my servers are running. I am trying to use the server's db. How > can I do that in embedded highly available graph database ?? When i try to > create a emb

[Neo4j] db path in web portal

2014-01-22 Thread Kalidhakani J
How can i make neo4j web portal to point to the database that i created? -- You received this message because you are subscribed to the Google Groups "Neo4j" group. To unsubscribe from this group and stop receiving emails from it, send an email to neo4j+unsubscr...@googlegroups.com. For more op

Re: [Neo4j] Embedded HIghlyAvailableGraphDatabase - database path

2014-01-22 Thread Kalidhakani J
neo4j-20-ga-graphs-for-everyone.html> > Do something useful - Teach your kids 1 hour code! <http://code.org/learn> > > > On Fri, Jan 17, 2014 at 1:14 PM, Kalidhakani J wrote: > >> HI all, >> >> I created a cluster with three nodes. In every server I gave my d

[Neo4j] Embedded HIghlyAvailableGraphDatabase - database path

2014-01-17 Thread Kalidhakani J
HI all, I created a cluster with three nodes. In every server I gave my database path as data/myGraph.db For creating HIghlyAvailableGraphDatabase, I used the following code, GraphDatabaseService graphDb = databaseFactory.newHighlyAvailableDatabaseBuilder("/data/myGraph.db") .loadPropertiesFromF

Re: [Neo4j] Embedded HighlyAvailableGraphDatabase

2014-01-10 Thread Kalidhakani J
you have 3 different versions !! > > Fix that and you're good. > > Michael > > Am 10.01.2014 um 08:36 schrieb Kalidhakani J : > > Thanks for ur reply. > > There is no version problem. I use oly the following four jar files. > neo4j-cluster-1.9.4.jar &g

Re: [Neo4j] Embedded HighlyAvailableGraphDatabase

2014-01-09 Thread Kalidhakani J
requesting Indexprovides, CacheProviders,etc in its constructor. Should i set those values explicitly?? On Fri, Jan 10, 2014 at 12:38 PM, Michael Hunger < michael.hun...@neopersistence.com> wrote: > See my answer on StackOverflow. > > Am 10.01.2014 um 08:01 schrieb Kalidhakani J : >

[Neo4j] Embedded HighlyAvailableGraphDatabase

2014-01-09 Thread Kalidhakani J
I am trying to create embedded HighlyAvailableGraphDatabase. My server configurations, ha.server_id=1 ha.initial_hosts=192.168.9.1:5001,192.168.9.2:5002,192.168.9.3:5003 ha.server=192.168.9.1:6002 ha.cluster_server=192.168.9.1:5001 ha.server_id=2 ha.initial_hosts=192.168.9.1:5001,192.168.9.2:5

[Neo4j] Exception in creating HighlyAvailableGraphDatabase

2014-01-04 Thread Kalidhakani J
Hi all, I am tring to create a HighlyAvailableGraphDatabase with set of configurations as follows, Map haConfig = new HashMap(); haConfig.put("org.neo4j.server.database.mode", "HA"); haConfig.put("org.neo4j.server.webserver.address","0.0.0.0"); haConfig.put("ha.server_id", "1");