What i have done ..
Trying to connect to graph.db generated by neo4j 2.2.3 so as to work with the sample Movie graph (to use other graphs later on..) after saving the Movie nodes and relationships by running the cypher query for Movie Graph in neo4j interface at localhost:7474
Manually installed the Blueprints implementation for Neo4j 2.x as instructed here https://github.com/tinkerpop/rexster/wiki/Specific-Graph-Configurations .. also updated the Rexster.xml
After updating the in Rexter.xml to my graph.db, tried to access the graph from localhost:8182/graphs/neo4jsample/tp/gremlin?script=g.V.map()
but it returns {"message":"Graph [neo4jsample] could not be found"}
From gremlin console g = new Neo4jGraph('*path/to/my/graph.db*')
throws
org.neo4j.kernel.lifecycle.LifecycleException: Component 'org.neo4j.kernel.StoreLockerLifecycleAdapter@9d35b10' was successfully initialized, but failed to start.
Is it that Neo4j 2.x implementation is not yet supported by Rexster and Gremlin or did I not go through all the required steps to configure it right?
Grateful for any pointers! Thanks!