当前位置:网站首页>Neo4j Environment Building

Neo4j Environment Building

2022-06-13 09:00:00 Q Z 1997

Construction de l'environnement

Télécharger l'adresse:https://neo4j.com/download-center/

2.1 InstallationNeo4j Community Server

jdk8Disponible en téléchargementNeo4j Community Edition 3.5.28
Documentation:https://neo4j.com/docs/operations-manual/3.5/

Décompresser dans un nouveau répertoire(Attention!:Le nom du Répertoire n'est pas en chinois),Par exemple,: D:\neo4j\

# Oui.Neo4jExécuter comme une application console 
<NEO4J_HOME>\bin\neo4j console 
# Oui.Neo4jInstallation en tant qu'utilisation de service 
<NEO4J_HOME>\bin\neo4j install-service

console: Démarrage direct neo4j Serveur
install-service | uninstall-service | update-service : Installation/Désinstaller/Mise à jour neo4j Services
start/stop/restart/status: Démarrage/Arrêtez!/Redémarrer/Statut
-V Pour plus d'informations

Entrée dansbinTable des matières,Mise en œuvre

neo4j console

Accès dans le Navigateurhttp://localhost:7474
Utiliser un nom d'utilisateurneo4jEt mot de passe par défautneo4jConnexion,On vous demandera alors de changer le mot de passe.
Neo4j Browser .Est utilisé par les développeurs pour explorer Neo4jBase de données、Mise en œuvreCypher Un outil pour interroger et visualiser les résultats sous forme de tableau ou de graphique .

2.2 docker InstallationNeo4j Community Server

Open port

  • 7474 for HTTP.
  • 7473 for HTTPS.
  • 7687 for Bolt.
docker pull neo4j:3.5.22-community
docker run -d -p 7474:7474 -p 7687:7687 --name neo4j \ -e "NEO4J_AUTH=neo4j/123456" \ -v /usr/local/soft/neo4j/data:/data \ -v /usr/local/soft/neo4j/logs:/logs \ -v /usr/local/soft/neo4j/conf:/var/lib/neo4j/conf \ -v /usr/local/soft/neo4j/import:/var/lib/neo4j/import \ neo4j:3.5.22-community
原网站

版权声明
本文为[Q Z 1997]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/164/202206130859553014.html