Hi everyone! I recently updated our neo4j community edition database from 3.5 to latest (4.2.2) using the official neo4j docker image. And the browser credential caching stopped working.
In browser I am now greeted by this message when signing in:
" You are connected as user neo4j
to bolt://XXXX:8092
Connection credentials are NOT stored in your web browser. "
What could be the cause of this? I have not changed any default settings regarding authentication or the browser..
These are the settings I have changed:
dbms.memory.pagecache.size=5G
dbms.memory.heap.max_size=48G
dbms.memory.heap.initial_size=12G
dbms.directories.plugins=/plugins
dbms.directories.logs=/logs
dbms.directories.import=/import
dbms.default_listen_address=0.0.0.0
dbms.default_advertised_address=XXXX
dbms.connector.bolt.advertised_address=:8092
dbms.connector.http.listen_address=0.0.0.0:7474
dbms.connector.bolt.listen_address=0.0.0.0:7687
dbms.connector.bolt.advertised_address=:8087
Here is the startup logs:
Directories in use:
home: /var/lib/neo4j
config: /var/lib/neo4j/conf
logs: /logs
plugins: /plugins
import: /import
data: /var/lib/neo4j/data
certificates: /var/lib/neo4j/certificates
run: /var/lib/neo4j/run
Starting Neo4j.
2021-02-06 09:38:52.953+0000 INFO Note that since you did not explicitly set the port in dbms.connector.http.advertised_address Neo4j automatically set it to 7474 to match dbms.connector.http.listen_address. This behavior may change in the future and we recommend you to explicitly set it.
2021-02-06 09:38:52.960+0000 INFO Note that since you did not explicitly set the port in dbms.connector.https.advertised_address Neo4j automatically set it to 7473 to match dbms.connector.https.listen_address. This behavior may change in the future and we recommend you to explicitly set it.
2021-02-06 09:38:52.964+0000 INFO Starting...
2021-02-06 09:38:55.011+0000 INFO ======== Neo4j 4.2.2 ========
2021-02-06 09:39:04.032+0000 INFO Performing postInitialization step for component 'security-users' with version 2 and status CURRENT
2021-02-06 09:39:04.032+0000 INFO Updating the initial password in component 'security-users'
2021-02-06 09:39:04.046+0000 ERROR Multiple users matching initial user password from `auth.ini` file: neo4j
The image I use is neo4j:latest, and I mount /data, /plugin, /logs and /import directories when starting the container.
Regards,
Daniel