Cannot start Neo4j - getting unable to bind to port

此生再无相见时 提交于 2019-12-24 07:12:59

问题


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

Unable to bind to port. Are you running another Neo4j process on this computer?

tried to check the default port

lsof -i :5001

but nothing is bind to that port

same result checking the activity monitor shows that neo4j not running


回答1:


Is 5001 your browser port ?

I would check if there is usage on the following :

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

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

Same for 7473

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

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

sudo killall -9 java



来源:https://stackoverflow.com/questions/37483303/cannot-start-neo4j-getting-unable-to-bind-to-port

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!