Hi,
curl -XGET 'http://localhost:9200'
{
"name" : "node-1",
"cluster_name" : "my-cluster",
"cluster_uuid" : "-p0ycCv1Q2aTnJ7VJ8nmuQ",
"version" : {
"number" : "6.6.2",
"build_flavor" : "default",
"build_type" : "deb",
"build_hash" : "3bd3e59",
"build_date" : "2019-03-06T15:16:26.864148Z",
"build_snapshot" : false,
"lucene_version" : "7.6.0",
"minimum_wire_compatibility_version" : "5.6.0",
"minimum_index_compatibility_version" : "5.0.0"
},
"tagline" : "You Know, for Search"
}
and Kibana has the same Version.
Ports:
netstat -tulpn | grep 5601
(No info could be read for "-p": geteuid()=1000 but you should be root.)
tcp 0 0 127.0.0.1:5601 0.0.0.0:* LISTEN -
sudo lsof -i -P -n | grep 5601
node 895 kibana 18u IPv4 12892 0t0 TCP 127.0.0.1:5601 (LISTEN)
Service:
sudo systemctl status kibana
● kibana.service - Kibana
Loaded: loaded (/etc/systemd/system/kibana.service; enabled)
Active: active (running) since Mon 2019-03-18 21:05:00 CET; 3min 47s ago
Main PID: 12807 (node)
CGroup: /system.slice/kibana.service
└─12807 /usr/share/kibana/bin/../node/bin/node --no-warnings --max-http-header-size=65536 /usr/share/kibana/bin/../src/cli -c /etc/kibana/kibana.yml
Mar 18 21:05:10 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:10Z","tags":["status","plugin:remote_clusters@6.6.2","info"],"pid":12807,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
Mar 18 21:05:10 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:10Z","tags":["status","plugin:cross_cluster_replication@6.6.2","info"],"pid":12807,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
Mar 18 21:05:10 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:10Z","tags":["info","monitoring-ui","kibana-monitoring"],"pid":12807,"message":"Starting monitoring stats collection"}
Mar 18 21:05:10 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:10Z","tags":["status","plugin:security@6.6.2","info"],"pid":12807,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
Mar 18 21:05:11 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:11Z","tags":["reporting","warning"],"pid":12807,"message":"Generating a random key for xpack.reporting.encryptionKey. To prevent pending reports from failing on restart, please set xpack.reporting.encryptionKey in kibana.yml"}
Mar 18 21:05:11 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:11Z","tags":["status","plugin:reporting@6.6.2","info"],"pid":12807,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
Mar 18 21:05:11 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:11Z","tags":["license","info","xpack"],"pid":12807,"message":"Imported license information from Elasticsearch for the [monitoring] cluster: mode: basic | status: active"}
Mar 18 21:05:12 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:12Z","tags":["reporting","browser-driver","warning"],"pid":12807,"message":"Enabling the Chromium sandbox provides an additional layer of protection."}
Mar 18 21:05:12 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:12Z","tags":["info","migrations"],"pid":12807,"message":"Creating index .kibana_1."}
Mar 18 21:05:12 my.server kibana[12807]: {"type":"log","@timestamp":"2019-03-18T20:05:12Z","tags":["warning","migrations"],"pid":12807,"message":"Another Kibana instance appears to be migrating the index. Waiting for that migration to complete. If no other Kibana instance is attempting migrations, you can get past this message by deleting index .kibana_1 and restarting Kibana."}
Cheers Ralf