How to disable Basic Auth on Neo4j 2.2.0-RC01

后端 未结 2 1610
[愿得一人]
[愿得一人] 2021-01-11 22:15

Currently I use Neo4j 2.2.0-RC01. It has basic Auth enable as default. How can I disable the default Basic Auth on Neo4j 2.2.0-RC01?

2条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-11 22:51

    In file conf/neo4j-server.properties, change the dbms.security.auth_enabled to false and restart Neo4j:

    # Require (or disable the requirement of) auth to access Neo4j
    dbms.security.auth_enabled=false
    

提交回复
热议问题