本文介绍了无法启动Neo4j-无法绑定到端口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Mac OS,每次尝试启动Neo4j时都会出现此错误

I am using mac os, every time I am trying to start Neo4j I am getting this error

试图检查默认端口

但没有任何东西绑定到该端口

but nothing is bind to that port

检查活动监视器的结果相同,表明neo4j没有运行

same result checking the activity monitor shows that neo4j not running

推荐答案

5001是您的浏览器端口吗?

Is 5001 your browser port ?

我将检查以下各项是否有用:

I would check if there is usage on the following :

端口7474(neo4j浏览器):lsof -i -n -P | grep 7474

Port 7474 (neo4j browser) : lsof -i -n -P | grep 7474

端口1337(neo4j-shell):lsof -i -n -P | grep 1337

Port 1337 (neo4j-shell): lsof -i -n -P | grep 1337

与7473相同

对于外壳,例如Tunnelbclick使用的是1337,有时与neo4j冲突.

For the shell, for example Tunnelbclick is using 1337 and sometimes conflicts with neo4j.

如果它不起作用,请尝试杀死您的Java进程:

If it doesn't work, try to kill your java processes :

sudo killall -9 java

这篇关于无法启动Neo4j-无法绑定到端口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 16:17
查看更多