Set up cluster - composite db

I am working on a composite database whose constituents are clusters formed by 3 primary databases and each one is hosted by a diferent docker container. The composite is also running on a different container. I am trying to set up the composite, but I am having some issues:

  • Neo.DatabaseError.Statement.ExecutionFailed

Failed to encrypt remote user password.
I get this error when I create an alias for the cluster, but I dont know what it means and how to solve it. This my query used:
CREATE ALIAS sevilla.sevillasur

FOR DATABASE sevillasur

AT 'neo4j+s://fog1-a:7687'

USER neo4j

PASSWORD 'password'

could someone help to me solve it? Thank so much!

When you do:

CREATE ALIAS ... AT 'neo4j+s://...' USER neo4j PASSWORD 'password'

Neo4j stores those credentials (reversibly encrypted) in the system database. To do that, the local DBMS (your “composite” container) must have a keystore configured.

Follow the example here on configuring remote aliases: Configuring remote database aliases - Operations Manual

1 Like

Great I got it! thanks you so much david