I installed a new version of elasticsearch on my linux server and got the following result:
curl -X GET "192.168.1.9:9200/"
{
"name" : "Test-Node",
"cluster_name" : "Test-Cluster",
"cluster_uuid" : "_na_",
"version" : {
"number" : "7.0.0",
"build_flavor" : "default",
"build_type" : "deb",
"build_hash" : "b7e28a7",
"build_date" : "2019-04-05T22:55:32.697037Z",
"build_snapshot" : false,
"lucene_version" : "8.0.0",
"minimum_wire_compatibility_version" : "6.7.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}
curl -uelastic -XGET 'http://192.168.1.9:9200/_cluster/health?pretty'
Enter host password for user 'elastic':
{
"error" : {
"root_cause" : [
{
"type" : "master_not_discovered_exception",
"reason" : null
}
],
"type" : "master_not_discovered_exception",
"reason" : null
},
"status" : 503
}
elasticsearch.yml
cluster.name: Test-Cluster
node.name: Test-Node
network.host: 192.168.1.9
cluster.initial_master_nodes: Test_Node
What is the problem? I can't start kibana because I can not get the elastic license.