在iMac上,访问本地IP地址上的elasticsearch和neo4j端口?

时间:2017-04-04 18:36:51

标签: elasticsearch neo4j port

ifconfig显示

inet 192.168.10.1

我可以访问

http://localhost/

http://127.0.0.1/

http://192.168.10.1

他们都是一样的。

我也可以访问以下网址上的neo4j和elasticsearch端口

Elasticsearch

http://127.0.0.1:9200/

http://localhost:9200/

Neo4j的

http://127.0.0.1:7474/browser/

http://localhost:7474/browser/

但是端口9200和7474不适用于192.168.10.1

http://192.168.10.1:9200

http://192.168.10.1:7474

我需要做的事情是使端口7474(neo4j)和9200(elasticsearch)适用于192.168.10.1,但我不知道如何。

请指教,谢谢!

1 个答案:

答案 0 :(得分:0)

我明白了。

<强> Neo4j的

在ip上设置neo4j(localhost除外),在我的情况下

http://192.168.10.1:7474

在neo4j.conf文件中

取消注释以下行。

# 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

<强> Elasticsearch

修改elasticsearch.yml

添加以下行

network.host: 0.0.0.0

然后启动elasticsearch。