neovis.js is a graph visualization tool powered by vis.js with data from Neo4j.
Aura has strict encryption policies. Hence, encryption must be enforced in neovis to use it on an Aura instance.
Below are working example configurations for AuraDB by using an unencrypted connection URI and enforcing encryption in the javascript driver's instance :
neovis.js version 1.6.0:
var config = {
encrypted:"ENCRYPTION_ON",
trust: "TRUST_SYSTEM_CA_SIGNED_CERTIFICATES",
container_id: "viz",
server_url: "neo4j://<dbid>.databases.neo4j.io",
...
neovis.js version 2.0.2:
var config = {
containerId:"viz",
neo4j: {
serverUrl:"neo4j://<dbid>.databases.neo4j.io",
serverUser:"neo4j",
serverPassword:"secret",
driverConfig: {
encrypted:"ENCRYPTION_ON",
trust:"TRUST_SYSTEM_CA_SIGNED_CERTIFICATES"
}
},
...
Please replace <dbid> with your actual dbid and the "secret" with your instance's password.
The remainder of the configuration options would depend on your requirements.
Note: This article is provided as a convenience for users.
Any issues arising from neovis must be reported in the neovis.js GitHub repository.
Comments
0 comments
Please sign in to leave a comment.