Titan + Rexster Server + Cassandra Remote
I’m currently trying to use a titangraph using a Cassandra Remote (running at localhost as suggested by Matthias https://groups.google.com/forum/#!topic/aureliusgraphs/EasJTTkDtfY) with the Rexster Server.
When I go to:
I can see the titangraph at localhost:8182/graphs
{
}
However when I connect to:
localhost:8182/graphs/titangraph I get an Internal Error
I created titangraph using titan-cassandra-3.0.2. (Cassandra 1.2.9 is already running as localhost)
gremlin> g = TitanFactory.open('bin/cassandra.local')
==>titangraph[cassandrathrift:127.0.0.1]
gremlin> g.addVertex([name: 'jupiter']);
==>v[4]
gremlin> g.commit();
==>null
gremlin> g.shutdown();
==>null
[I also tried with titangraph opened in gremlin, and I get the same error]
cassandra.local file is configured as follow:
storage.backend=cassandrathrift
storage.hostname=127.0.0.1
The Rexster Server Configuration rexster-server-2.4.0/config/rexster.xml
<graph>
<graph-name>titangraph</graph-name>
<graph-type>com.thinkaurelius.titan.tinkerpop.rexster.TitanGraphConfiguration</graph-type>
<graph-location>/var/lib/cassandra/data/titan</graph-location>
<graph-read-only>false</graph-read-only>
<properties>
<storage.backend>cassandrathrift</storage.backend>
<storage.hostname>127.0.0.1</storage.hostname>
</properties>
<extensions>
<allows>
<allow>tp:gremlin</allow>
</allows>
</extensions>
</graph>
Rexster links the titangraph, however i can’t see the vertex
--
You received this message because you are subscribed to the Google Groups "Aurelius" group.
To unsubscribe from this group and stop receiving emails from it, send an email to aureliusgraph...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.