Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 458 Bytes

08-B-Managing Databases.md

File metadata and controls

38 lines (31 loc) · 458 Bytes

Neo4J-DB-Management

:use system
show databases
create database atindb
:use atindb
SHOW DATABASES
:dbs
DROP DATABASE atindb
CALL db.schema.visualization()

Set the password for the neo4j user

  • Using Browser
:help server
:SERVER change-password
  • Using Console
cypher-shell -u neo4j -p <password>

> SHOW USERS;
> ALTER USER atin_s SET PASSWORD 'abc123' CHANGE NOT REQUIRED SET STATUS ACTIVE;