Neo4j: Difference between revisions

From NixOS Wiki
imported>MrVanDalo
Created page with "= Neo4J = == How to set initial password == <pre>export NEO4J_CONF=/var/lib/neo4j/conf/ neo4j-admin set-initial-password secret</pre> Now you should be able to login using <..."
 
m copyedit, add lead section, tag with {{Expansion}}
 
Line 1: Line 1:
= Neo4J =
{{Expansion}}


== How to set initial password ==
[https://neo4j.com/ Neo4j] is a graph database implemented in [[Java]].


<pre>export NEO4J_CONF=/var/lib/neo4j/conf/
== NixOS ==
neo4j-admin set-initial-password secret</pre>
 
Now you should be able to login using <code>cypher-shell</code>
=== Setting the initial password ===
 
<syntaxHighlight lang="bash">
export NEO4J_CONF=/var/lib/neo4j/conf/
neo4j-admin set-initial-password mySuperSecretPassword
</syntaxHighlight>
 
Logging in using <code>cypher-shell</code> should now function.

Latest revision as of 06:38, 21 June 2024

Neo4j is a graph database implemented in Java.

NixOS

Setting the initial password

export NEO4J_CONF=/var/lib/neo4j/conf/
neo4j-admin set-initial-password mySuperSecretPassword

Logging in using cypher-shell should now function.