Team,
I am trying to spin up neo4j container and neovis(node) container in a cloud server in the same network. The issue is when I provide the internal IP of the neo4j container for const driver = neo4j.driver('bolt://neo4jcontainerIP', neo4j.auth.basic('neo4j', 'password'));
it cannot connect or fetch the data.
But when I provide a public IP of the host where neo4j is running const driver = neo4j.driver('bolt://publicIP', neo4j.auth.basic('neo4j', 'password'));
it works without any issues
Can you please assist me how to pull the data into the neovis frontend using neo4j container IP?
const neo4j = require('neo4j-driver');
const driver = neo4j.driver('bolt://localhost', neo4j.auth.basic('neo4j', 'password'));
module.exports = driver;
Your help is greatly appreciated!!