我在一台 Win2008 R2 服务器上安装了“neo4j-community-1.9-windows”和“neoclipse-1.9.1-win32.win32.x86_64”。Neo4j 图形数据库文件位于“E:\neo4j_home”目录
E:\neo4j_home\bin
E:\neo4j_home\config
E:\neo4j_home\data
......
E:\neo4j_home\system
图形数据库运行良好。我可以看到节点和关系http://localhose:7474/
,例如,我可以看到节点 100http://localhost:7474/webadmin/#/data/search/100/
在 Neoclipse 中,我将连接 URI 设置为E:\neo4j_home\data
orE:/neo4j_home/data
并单击“启动/连接数据库”菜单。连接显示为绿色。但是当我在 Neoclipse 中进行 Cypher 查询时,它找不到除 node(0) 之外的任何节点。例如:start n=node(100) return n;
会报错:org.neo4j.cypher.EntityNotFoundException:Node 100 not found
我是否设置了错误的连接 URI?