Datastax dse图安装

Datastax dse graph installation

我正在 ubuntu 机器上试验 Datastax Dse 5.0.5 图。

我最感兴趣的是 Datastax 企业包的图形部分

我已经在不同的终端上执行了以下这些命令

我能够在本地主机上成功启动 datastax-studio,但出现此错误

All DSE gremlin server hosts are currently down or don't have the 'graph' workload set. Please, make sure that hosts are available and have the 'graph' workload and retry

我想做的是?

我想使用 java 程序创建顶点和边,并想在 datastax-studio 上将其可视化。

为此,我已经按照 dse 文档编写了 java 程序,但我很困惑应该在哪个端口连接到数据库,甚至我不确定我是否真的走在正确的道路上。

能否指导我正确安装dse graph和studio?

./bin/dse cassandra 将只启动 Cassandra 工作负载。

看来您使用的是 tarball 安装

./bin/dse cassandra -g 将以图形模式启动 DSE

您还可以这样做:

./bin/dse cassandra -s -g 启用 fuzzy/text/geospatial 在 Graph 或 Cassandra 中搜索的搜索功能

./bin/dse cassandra -k -g 启用 Spark 运行 OLAP 样式遍历和 Spark 分析 Cassandra 数据

./bin/dse cassandra -s -k -g 以启用所有工作负载类型以便于实验。

有关详细信息,请参阅: https://docs.datastax.com/en/datastax_enterprise/5.0/datastax_enterprise/admin/startDseStandalone.html

转到下面 Link(如果您安装了没有服务的 DSE):-

/usr/share/dse/resources/graph/gremlin-console/conf

或者转到保存 remote.yaml 文件的路径。

然后check/configure设置:-

hosts: [127.0.0.1]
port: 8182
serializer: { className: org.apache.tinkerpop.gremlin.driver.ser.GryoMessageSerializerV1d0,
              config: { serializeResultToString: true, ioRegistries: [org.apache.tinkerpop.gremlin.tinkergraph.structure.TinkerIoRegistry] }}
connectionPool: {
  maxContentLength: 65536000
}

检查您的主机和端口。然后停止并重新启动 dse .