我收到以下错误,我不知道如何重新启动服务器。我尝试了多次,但我一直都得到同样的错误。我怎么能停止并重新启动服务器。我非常感谢任何帮助。
./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.
答案 0 :(得分:10)
您获得的异常是因为另一台服务器正在运行。
此外,还有另一个例外,您在日志文件夹中没有写入权限。
如果是,请找到正在运行的数据库的位置:
然后转到该位置并停止数据库,例如基于图像:
cd /Users/cw/_graphs/tests
./bin/neo4j stop
如果它无效,请尝试终止该过程:
sudo htop
kill -9 10522
尝试运行新数据库。并确保您拥有商店和日志的正确权限。