Amazon web services 如何使用Rexster服务器加载aws dynamodb titan graph?

Amazon web services 如何使用Rexster服务器加载aws dynamodb titan graph?,amazon-web-services,amazon-dynamodb,titan,rexster,Amazon Web Services,Amazon Dynamodb,Titan,Rexster,我是AWS DynamoDb Titan Graph DB的新手。所以我按照这里的指示来做 我可以启动Gremlin服务器并加载图标。 然后我想用Rexster服务器加载graph。我启动Rexster服务器 bin/rexster.sh -s -c config/rexster-local.xml 在日志中我看到图表被加载了 ... [INFO] Backend - Initiated backend operations thread pool of size 8 [INFO] Abst

我是AWS DynamoDb Titan Graph DB的新手。所以我按照这里的指示来做

我可以启动Gremlin服务器并加载图标。 然后我想用Rexster服务器加载graph。我启动Rexster服务器

bin/rexster.sh -s -c config/rexster-local.xml
在日志中我看到图表被加载了

...
[INFO] Backend - Initiated backend operations thread pool of size 8
[INFO] AbstractDynamoDBStore - Entering ensureStore table:titan_titan_ids
[INFO] AbstractDynamoDBStore - Entering ensureStore table:titan_edgestore
[INFO] AbstractDynamoDBStore - Entering ensureStore table:titan_graphindex
[INFO] AbstractDynamoDBStore - Entering ensureStore table:titan_txlog
[INFO] AbstractDynamoDBStore - Entering ensureStore table:titan_systemlog
[INFO] AbstractDynamoDBStore - Entering ensureStore table:titan_system_properties
[INFO] KCVSLog$MessagePuller - Loaded unidentified ReadMarker start time 2015-12-20T10:01:21.539Z into com.thinkaurelius.titan.diskstorage.log.kcvs.KCVSLog$MessagePuller@d9f5fce
[INFO] RexsterApplicationGraph - Graph [titan] - configured with allowable namespace [tp:gremlin]
[INFO] GraphConfigurationContainer - Graph titan - standardtitangraph[com.amazon.titan.diskstorage.dynamodb.DynamoDBStoreManager:[127.0.0.1]] loaded
...
但当我去狗屋的时候,我犯了一个错误

Error: Could not get the graph profile from Rexster.

我使用了titan版本1.0.0、dynamodb-titan100-storage-backend-1.0.0-hadoop1和rexster-server-2.6.0。这是我用来启动Rexster服务器的配置。请告诉我如何正确使用Rexster服务器加载图表。多谢各位

您可能应该查看Rexster的故障排除部分:


我认为您的问题和仍然设置为localhost有关。如果要远程访问,则应将其设置为服务器的主机名。

您可能应该查看Rexster的疑难解答部分:


我认为您的问题和仍然设置为localhost有关。如果要远程访问,应将其设置为服务器的主机名。

Titan 1.0.0的DynamoDB存储后端支持Titan 1.0.0。泰坦1.0.0是根据TinkerPop 3编码的,因此,不会随狗屋一起发货。
Rexster被重命名为Gremlin服务器,并使用WebSockets流媒体协议代替RexPro二进制协议。您可以在Gremlin Server YAML配置中使用全局绑定的图形对象,并与在Doghouse的Gremlin shell中使用的图形对象进行交互。

用于Titan 1.0.0的DynamoDB存储后端支持Titan 1.0.0。泰坦1.0.0是根据TinkerPop 3编码的,因此,不会随狗屋一起发货。
Rexster被重命名为Gremlin服务器,并使用WebSockets流媒体协议代替RexPro二进制协议。您可以在Gremlin Server YAML配置中使用全局绑定的图形对象,并与在狗屋的Gremlin shell中使用的图形进行交互。

谢谢回复,我在本地访问rexster服务器。谢谢回复,我在本地访问rexster服务器。