我已经在Ubuntu上安装了Elastic 6.6,并且在端口9200上运行良好。
我还使用json文件创建了一个新数据。
curl -H“内容类型:application / json” -XPOST“ http://localhost:9200/product/default/_bulk?pretty” --data-binary“ @ test-data.json”
但是当我启动kibana时会引发错误。
错误[06:27:47.587] [警告] [进程]服务不可用:: {“ path”:“ / _ cluster / settings”,“ query”:{“ include_defaults”:true},“ statusCode”:503,“ response”:“
503 服务不可用
\ n没有服务器可用于处理此问题 请求。\ n \ n \ n“} 在响应时(/home/svaibhav/Downloads/kibana-6.6.0-linux-x86_64/node_modules/elasticsearch/src/lib/transport.js:308:15) 在checkRespForFailure(/home/svaibhav/Downloads/kibana-6.6.0-linux-x86_64/node_modules/elasticsearch/src/lib/transport.js:267:7) 在HttpConnector上。 (/home/svaibhav/Downloads/kibana-6.6.0-linux-x86_64/node_modules/elasticsearch/src/lib/connectors/http.js:165:7) 在IncomingMessage.wrapper(/home/svaibhav/Downloads/kibana-6.6.0-linux-x86_64/node_modules/elasticsearch/node_modules/lodash/lodash.js:4935:19) 在IncomingMessage.emit(events.js:187:15) 在endReadableNT(_stream_visible.js:1094:12) 在process._tickCallback(内部/进程/next_tick.js:63:19)处登录[06:27:48.009] [警告] [管理员] [elasticsearch]无法恢复 连接:http://localhost:9200/日志[06:27:48.009] [warning] [admin] [elasticsearch]没有活动联系
编辑: 现在解决。 9200端口上运行着两项服务。 一个在TCP上,另一个在tcpV6上。 Elastic在tcpv6上运行,但是kibana在tcp 9200端口上运行。 我改变了松紧带的端口,它起作用了。