neo4j服务器没有重启或停止

时间:2015-07-21 17:29:53

标签: neo4j

我收到以下错误,我不知道如何重新启动服务器。我尝试了多次,但我一直都得到同样的错误。我怎么能停止并重新启动服务器。我非常感谢任何帮助。

./bin/neo4j start

显示:

/usr/local/neo4j/data/log/console.log: Permission denied
process [11825]... waiting for server to be ready.. Failed to start within 120 seconds.
Neo4j Server may have failed to start, please check the logs.


sudo ./bin/neo4j start

显示:

Another server-process is running with [ST=ESTABLISHED], cannot start a new one. Exiting.

1 个答案:

答案 0 :(得分:10)

您获得的异常是因为另一台服务器正在运行。

此外,还有另一个例外,您在日志文件夹中没有写入权限。

  1. 检查http://localhost:7474是否显示neo4j网络浏览器。
  2. 如果是,请找到正在运行的数据库的位置:

    enter image description here

    然后转到该位置并停止数据库,例如基于图像:

    cd /Users/cw/_graphs/tests
    ./bin/neo4j stop
    

    如果它无效,请尝试终止该过程:

    sudo htop
    

    enter image description here

    kill -9 10522
    

    尝试运行新数据库。并确保您拥有商店和日志的正确权限。