ifconfig显示
inet 192.168.10.1
我可以访问
他们都是一样的。
我也可以访问以下网址上的neo4j和elasticsearch端口
Elasticsearch
Neo4j的
http://127.0.0.1:7474/browser/
http://localhost:7474/browser/
但是端口9200和7474不适用于192.168.10.1
我需要做的事情是使端口7474(neo4j)和9200(elasticsearch)适用于192.168.10.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。