Jump to content

Neo4j

From Official NixOS Wiki
☶︎
This article or section needs to be expanded. Further information may be found in the related discussion page. Please consult the pedia article metapage for guidelines on contributing.

Neo4j is a graph database implemented in Java.

NixOS

Example configuration for local development with out SSL certs

services.neo4j= {
  enable = true;
  bolt = {
    tlsLevel = "DISABLED";
  };
  https = {
    enable = false;
  };
};

Setting the initial password

sudo su 
export NEO4J_HOME=/var/lib/neo4j/
neo4j-admin dbms set-initial-password mySuperSecretPassword

Logging in using cypher-shell should now function.