All versions of this manual
X
 

Configuring data-sources: Memgraph

Please check for supported Memgraph versions in our compatibility matrix.

Configuration

To edit the Memgraph data-source configuration, you can either use the Web user-interface or edit the configuration file located at linkurious/data/config/production.json.

Example configuration:

{
  "dataSources": [
    {
      "graphdb": {
        "vendor": "memgraph",
        "url": "bolt+s://18.150.10.214",
        "user": "my-memgraph-user",
        "password": "my-memgraph-password"
      },
      "index": {
        "vendor": "elasticsearch",
        "host": "127.0.0.1",
        "port": 9201
      }
    }
  ]
}

Supported graphdb options with Memgraph:

  • url (required): URL of the Memgraph server (Bolt: bolt:// or bolt+s://)
  • user (optional): Memgraph user (if credentials are enabled)
  • password (optional): Memgraph password (if credentials are enabled)
  • latitudeProperty (optional): Name of the node property to use for latitude (used in geo mode)
  • longitudeProperty (optional): Name of the node property to use for longitude (used in geo mode)
  • ignoredEdgeTypePrefixes (optional): List of edge type prefixes to be excluded in the schema sampling

Memgraph cloud

Linkurious Enterprise allows using Memgraph instances running on Memgraph cloud.

Search with Memgraph

See options to enable full-text search with Memgraph.