How to access new neo4j ubuntu/ec2 install?

五迷三道 提交于 2019-12-08 19:09:30

I am not sure how does Neo4j run on ec2, but try setting this two setting in neo4j.conf, to allow non-local connections and maybe set an advertised address.

# With default configuration Neo4j only accepts local connections.
# To accept non-local connections, uncomment this line:
dbms.connectors.default_listen_address=0.0.0.0

# You can also choose a specific network interface, and configure a 
non-default
# port for each connector, by setting their individual listen_address.

# The address at which this server can be reached by its clients. This 
may be the server's IP address or DNS name, or
# it may be the address of a reverse proxy which sits in front of the 
server. This setting may be overridden for
# individual connectors below.
dbms.connectors.default_advertised_address=localhost
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!