我在服务器上安装了Kibana 5.4和Elastic search 5.4,我可以通过本地机器上的curl访问Kibana和Elastic搜索
curl localhost:5601
Run Code Online (Sandbox Code Playgroud)
我收到以下回复
var hashRoute ='/ app/kibana'; var defaultRoute ='/ app/kibana';
var hash = window.location.hash; if(hash.length){window.location = hashRoute + hash; } else {window.location = defaultRoute; }
用于弹性搜索
curl localhost:9200
Run Code Online (Sandbox Code Playgroud)
我收到以下回复
{"name":"mVgeyM4","cluster_name":"elasticsearch","cluster_uuid":"
ABV1adpCTY - e7Ib2PIBBQ","version":{"number":"5.4.0","build_hash":"780f8c4" ,"build_date":"2017-04-28T17:43:27.229Z","build_snapshot":false,"lucene_version":"6.5.0"},"标语":"你知道,搜索"}
以下是我的kibana.yml
# Kibana is served by a back end server. This setting specifies the port to use.
#server.port: 5601
# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The …Run Code Online (Sandbox Code Playgroud)