Neo4j桌面数据库无法启动,状态为“KILLED”

问题描述 投票:3回答:2

运行Neo4j Desktop版本1.0.15。尝试启动数据库会导致启动失败:

数据库无法启动:DB [database-f8950fdd-6b5f-4fea-8c9f-e8457ee1da9a]'v3.3.1'退出状态为“KILLED”。检查日志

主要的原木部分如下

2018-02-26 23:03:38.004+0000 ERROR Failed to start Neo4j: Starting Neo4j failed: Component 'org.neo4j.server.database.LifecycleManagingDatabase@6411d3c8' was successfully initialized, but failed to start. Please see the attached cause exception "Connection timed out: connect". Starting Neo4j failed: Component 'org.neo4j.server.database.LifecycleManagingDatabase@6411d3c8' was successfully initialized, but failed to start. Please see the attached cause exception "Connection timed out: connect".

Caused by: java.lang.RuntimeException: Error starting org.neo4j.kernel.impl.factory.GraphDatabaseFacadeFactory, C:\Users\kiril\AppData\Roaming\Neo4j Desktop\Application\neo4jDatabases\database-f8950fdd-6b5f-4fea-8c9f-e8457ee1da9a\installation-3.3.1\data\databases\graph.db

Caused by: org.neo4j.kernel.lifecycle.LifecycleException: Component 'org.neo4j.backup.OnlineBackupKernelExtension@c6e0f32' was successfully initialized, but failed to start. Please see the attached cause exception "Connection timed out: connect".

    Suppressed: org.neo4j.kernel.lifecycle.LifecycleException: Exception during graceful attempt to stop partially started component. Please use non suppressed exception to see original component failure.

Caused by: java.io.IOException: Unable to establish loopback connection
database neo4j desktop-application
2个回答
0
投票

可能是你的neo4j还在运行。我通过关闭数据库并重新启动它来解决了这个问题。

平台:Windows 10; Neo4j桌面版:1.1.13

打开命令行窗口并转到neo4j数据库的目录。跑

bin\neo4j status 

检查数据库的状态。

如果它正在运行,请运行

bin\neo4j stop

关闭你的数据库。然后返回到Neo4j桌面,单击开始按钮,它可能没有症状。


0
投票

当我克隆我连接的图表时,我遇到了同样的问题并解决了问题。此后,我可以毫无问题地连接到新图表。

© www.soinside.com 2019 - 2024. All rights reserved.