neo4j minimalist windows installation

1. Download and unzip

https://neo4j.com/download-center/#community 
 

2. Install Java jdk 11 and configure java environment variables

3. Enter the bin directory in the decompressed file, and execute the command line:  neo4j.bat console

 As shown in the figure: The neo4j service is successfully started.

 

4. Local access: 

http://localhost:7474/browser/

 

5. Remote access

Modify the conf file

# dbms.connector.http.listen_address=7474  改为  dbms.connector.http.listen_address=0.0.0.0:7474

# dbms.connector.bolt.listen_address=7687   改为  dbms.connector.bolt.listen_address=0.0.0.0:7687

Access from other computers: http://$ip address:7474/browser/

 

 

Guess you like

Origin blog.csdn.net/dare_kz/article/details/111251894