This example: neo4j-enterprise-2.3.1 version
neo4j default installation is to turn on access password authentication
You can find that the Neo4j-server.properties configuration file under conf/
# Require (or disable the requirement of) auth to access neo4jdbms.security.auth_enabled=true
True: Security authentication is enabled on behalf of Access
To false means that the data is accessed without serious
Open the following webserver for external IP and port access
# http port (for all data, administrative, and UI access)org.neo4j.server.webserver.port=7474 Org.neo4j.server.webserver.address=0.0.0.0
Used in Java programs (mainly spring data neo4j for example: 4.1.2.RELEASE)
Connection with authentication
driver=org.neo4j.ogm.drivers.http.driver.HttpDriverURI=http://user name: Password @ip address: 7474
Without validation
driver=Org.neo4j.ogm.drivers.http.driver.HttpDriverURI=http://ip Address: 7474
Spring Data neo4j use: http://projects.spring.io/spring-data-neo4j/
Https://github.com/neo4j-examples/sdn4-university
Neo4j turn off and turn on password access