Trying to change the default db on my Neo4j instance running in Docker per the exercise at https://neo4j.com/graphacademy/training-basic-admin-40/04-using-cypher-shell-manage-databases/#_exercise_steps_2, but not having any luck. Working on a Windows 10 machine.
I have created databaseone:
+-----------------------------------------------------------------------------------------------------+
| name | address | role | requestedStatus | currentStatus | error | default |
+-----------------------------------------------------------------------------------------------------+
| "databaseone" | "localhost:7687" | "standalone" | "online" | "online" | "" | FALSE |
| "neo4j" | "localhost:7687" | "standalone" | "online" | "online" | "" | TRUE |
| "system" | "localhost:7687" | "standalone" | "online" | "online" | "" | FALSE |
+-----------------------------------------------------------------------------------------------------+
And in my configuration directory mapped via docker volume, I have a neo4j.conf file with the following:
dbms.default_database=databaseone
However, no matter how many times and stop and start the container (or use docker restart
), when I log back in with cypher-shell and show databases, neo4j remains the default database.
Any ideas? I double checked the config name (Configuration settings - Operations Manual) and have checked to make sure I'm spelling "databaseone" correctly everywhere.