mirror of
https://github.com/Steffo99/unimore-bda-4.git
synced 2024-11-21 23:54:19 +00:00
6 lines
253 B
Bash
Executable file
6 lines
253 B
Bash
Executable file
#!/usr/bin/env bash
|
|
export NEO4J_USERNAME="neo4j"
|
|
export NEO4J_PASSWORD="neo4j"
|
|
|
|
echo "Altering password..."
|
|
cypher-shell --database="system" --non-interactive --fail-fast 'ALTER CURRENT USER SET PASSWORD FROM "neo4j" TO "unimore-big-data-analytics-4"'
|