如何在 Neo4j 2.2.0-RC01 上禁用基本身份验证
How to disable Basic Auth on Neo4j 2.2.0-RC01
目前我使用 Neo4j 2.2.0-RC01。它默认启用基本身份验证。如何在 Neo4j 2.2.0-RC01 上禁用默认的基本身份验证?
在文件 conf/neo4j-server.properties
中,将 dbms.security.auth_enabled 更改为 false 并重新启动 Neo4j:
# Require (or disable the requirement of) auth to access Neo4j
dbms.security.auth_enabled=false
对我来说这只是问题的一部分。在安装 gem 之前,我还使用 brew install 在我的机器上安装了 neo4j。当我尝试启动服务器时,它试图从 Cellar 内部的 brew 安装启动服务器。如上所述,我已经按照 neo4j 安装说明在我的项目安装中编辑了配置。所以它没有用。
只有当我 brew 卸载了 neo4j,并从 bin 文件夹中执行 ./neo4j start_ 时,它才对我正常工作。
目前我使用 Neo4j 2.2.0-RC01。它默认启用基本身份验证。如何在 Neo4j 2.2.0-RC01 上禁用默认的基本身份验证?
在文件 conf/neo4j-server.properties
中,将 dbms.security.auth_enabled 更改为 false 并重新启动 Neo4j:
# Require (or disable the requirement of) auth to access Neo4j
dbms.security.auth_enabled=false
对我来说这只是问题的一部分。在安装 gem 之前,我还使用 brew install 在我的机器上安装了 neo4j。当我尝试启动服务器时,它试图从 Cellar 内部的 brew 安装启动服务器。如上所述,我已经按照 neo4j 安装说明在我的项目安装中编辑了配置。所以它没有用。
只有当我 brew 卸载了 neo4j,并从 bin 文件夹中执行 ./neo4j start_ 时,它才对我正常工作。