我正在使用 TitanGraphDB + Cassandra。我开始泰坦如下
cd titan-cassandra-0.3.1
bin/titan.sh config/titan-server-rexster.xml config/titan-server-cassandra.properties
我有一个 Rexster shell,可以用来与上面的 Titan + Cassandra 通信。
cd rexster-console-2.3.0
bin/rexster-console.sh
我正在尝试使用 Titan Graph DB 对网络拓扑进行建模。我想从我的 python 程序中对 Titan Graph DB 进行编程。我正在为此使用python bulbs
包。我创建图表的代码如下。
from bulbs.titan import Graph
self.g = Graph()
现在我有 rexster-console 和 Titan 在具有 IP 地址的机器上运行192.168.65.93
。如果我的 python 应用程序在我使用的同一台机器上运行self.g = Graph()
。
如果我想使用来自 python 应用程序的Titan AND Rexster
IP 连接到正在运行的机器怎么办192.168.65.93
192.168.65.94
我怎么做?我可以传递一些参数(例如配置文件到 Graph())吗?我在哪里可以找到它?