neo4j如何安装配置

56次阅读
没有评论

共计 1965 个字符,预计需要花费 5 分钟才能阅读完成。

自动写代码机器人,免费开通

这篇文章给大家分享的是有关 neo4j 如何安装配置的内容。丸趣 TV 小编觉得挺实用的,因此分享给大家做个参考,一起跟随丸趣 TV 小编过来看看吧。

注:网上找了许多教程,发现都不太适合 0 基础的用户,所以就自己写了一下。
推荐使用 1.x 版本,经测试 2.3.3 大量函数被遗弃。

安装启动

官网下载 tar 包

解压,进入 bin 下,运行./neo4j

在 url 中打开 localhost:7474 即可使用

配置

数据库的 location 设置。
conf/neo4j-server.properties 中第 14 行 org.neo4j.serve.database.location= 进行修改

使用

1.web 可视化 neo4j 的工具是 webadmin,打开方式:url 中打开 local/webadmin,即可使用
注:代码修改数据库,似乎需要每次重启 neo4j 才能在 webadmin 中显示,也有可能是数据同步慢
2. 简单实例(java 操作 neo4j)

package neo4j;
import java.io.File;
import java.io.IOException;
import javax.management.relation.Relation;
import org.neo4j.graphdb.GraphDatabaseService;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.Relationship;
import org.neo4j.graphdb.RelationshipType;
import org.neo4j.graphdb.Transaction;
import org.neo4j.graphdb.factory.GraphDatabaseFactory;
import org.neo4j.io.fs.FileUtils;
public class test {
 private static void registerShutdownHook( final GraphDatabaseService graphDb )  {  // Registers a shutdown hook for the Neo4j instance so that it  // shuts down nicely when the VM exits (even if you  Ctrl-C  the  // running example before it s completed)  /* 为了确保 neo4j 数据库的正确关闭,我们可以添加一个关闭钩子方法  * registerShutdownHook。这个方法的意思就是在 jvm 中增加一个关闭的  *  钩子,当 jvm 关闭的时候,会执行系统中已经设置的所有通过方法  * addShutdownHook 添加的钩子,当系统执行完这些钩子后,jvm 才会关闭。 *  所以这些钩子可以在 jvm 关闭的时候进行内存清理、对象销毁等操作。*/  Runtime.getRuntime().addShutdownHook( new Thread()  {  @Override  public void run()  { graphDb.shutdown();  }  } );  }  public static void main(String[] args) throws IOException { FileUtils.deleteRecursively( new File(  db  ) );   GraphDatabaseService graphdb=new GraphDatabaseFactory().newEmbeddedDatabase( db  Relationship relationship;  Transaction tx=graphdb.beginTx();  try{ Node node1=graphdb.createNode();  Node node2=graphdb.createNode();  node1.setProperty( message ,  Hello  node2.setProperty( message ,  World  relationship = node1.createRelationshipTo(node2, RelTypes.KNOWS);  relationship.setProperty( message ,  brave neo4j
}

感谢各位的阅读!关于“neo4j 如何安装配置”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

向 AI 问一下细节

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-04发表,共计1965字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)