Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
on 09-15-2021 10:51 PM
Hi All,
We have installed the neo4j community version 4.2.3.
[root@localhost package]# curl -XGET https://localhost:31474/
{
"bolt_routing" : "neo4j://localhost:7687",
"transaction" : "https://localhost:31474/db/{databaseName}/tx",
"bolt_direct" : "bolt://localhost:7687",
"neo4j_version" : "4.2.3",
"neo4j_edition" : "community"
}[root@localhost package]#
is there any way to solve this issue we tried the dbms.security.auth_enabled=true it is working for all the context (e.g. /db etc) but not working for / context.
After enabling the properties still without passing usrename and password we are able to get the response on / context
Thanks
Amritpal Singh
Bolt connection info (IP and port) is not something we would consider sensitive. Connection via bolt does require authentication. If you don't want to handle bolt traffic, you can turn off your bolt connector.
Additionally, you can configure what http paths are allowed vs which require authentication:
Thankyou so much Andrew. its helped me a lots.
Regards
Amritpal Singh