When I am trying to start the elasticsearch, i am getting the below logs:
[2020-03-17T16:41:33,633][WARN ][i.n.u.i.MacAddressUtil ] [elasticsearch-node-1] Failed to find a usable hardware address from the network interfaces; using random bytes: c2:36:b4:29:40:e3:5a:d9
[2020-03-17T16:41:33,684][INFO ][o.e.t.TransportService ] [elasticsearch-node-1] publish_address {127.0.0.1:9300}, bound_addresses {127.0.0.1:9300}
[2020-03-17T16:41:44,281][WARN ][o.e.c.c.ClusterFormationFailureHelper] [elasticsearch-node-1] master not discovered yet, this node has not previously joined a bootstrapped (v7+) cluster, and [cluster.initial_master_nodes] is empty on this node: have discovered [{elasticsearch-node-1}{1g6-SPfbTHi0eRfjXuLYLg}{pPs6OInqSP-igVsXUSnOIw}{127.0.0.1}{127.0.0.1:9300}{dilm}{ml.machine_memory=16723513344, xpack.installed=true, ml.max_open_jobs=20}]; discovery will continue using from hosts providers and [{elasticsearch-node-1}{1g6-SPfbTHi0eRfjXuLYLg}{pPs6OInqSP-igVsXUSnOIw}{127.0.0.1}{127.0.0.1:9300}{dilm}{ml.machine_memory=16723513344, xpack.installed=true, ml.max_open_jobs=20}] from last-known cluster state; node term 0, last-accepted version 0 in term 0
[2020-03-17T16:41:54,284][WARN ][o.e.c.c.ClusterFormationFailureHelper] [elasticsearch-node-1] master not discovered yet, this node has not previously joined a bootstrapped (v7+) cluster, and [cluster.initial_master_nodes] is empty on this node: have discovered [{elasticsearch-node-1}{1g6-SPfbTHi0eRfjXuLYLg}{pPs6OInqSP-igVsXUSnOIw}{127.0.0.1}{127.0.0.1:9300}{dilm}{ml.machine_memory=16723513344, xpack.installed=true, ml.max_open_jobs=20}]; discovery will continue using from hosts providers and [{elasticsearch-node-1}{1g6-SPfbTHi0eRfjXuLYLg}{pPs6OInqSP-igVsXUSnOIw}{127.0.0.1}{127.0.0.1:9300}{dilm}{ml.machine_memory=16723513344, xpack.installed=true, ml.max_open_jobs=20}] from last-known cluster state; node term 0, last-accepted version 0 in term 0
[2020-03-17T16:42:04,286][WARN ][o.e.n.Node ] [elasticsearch-node-1] timed out while waiting for initial discovery state - timeout: 30s
[2020-03-17T16:42:04,288][WARN ][o.e.c.c.ClusterFormationFailureHelper] [elasticsearch-node-1] master not discovered yet, this node has not previously joined a bootstrapped (v7+) cluster, and [cluster.initial_master_nodes] is empty on this node: have discovered [{elasticsearch-node-1}{1g6-SPfbTHi0eRfjXuLYLg}{pPs6OInqSP-igVsXUSnOIw}{127.0.0.1}{127.0.0.1:9300}{dilm}{ml.machine_memory=16723513344, xpack.installed=true, ml.max_open_jobs=20}]; discovery will continue using from hosts providers and [{elasticsearch-node-1}{1g6-SPfbTHi0eRfjXuLYLg}{pPs6OInqSP-igVsXUSnOIw}{127.0.0.1}{127.0.0.1:9300}{dilm}{ml.machine_memory=16723513344, xpack.installed=true, ml.max_open_jobs=20}] from last-known cluster state; node term 0, last-accepted version 0 in term 0
[2020-03-17T16:42:04,487][INFO ][o.e.h.AbstractHttpServerTransport] [elasticsearch-node-1] publish_address {127.0.0.1:9200}, bound_addresses {127.0.0.1:9200}
[2020-03-17T16:42:04,488][INFO ][o.e.n.Node ] [elasticsearch-node-1] started
[2020-03-17T16:42:06,109][DEBUG][o.e.a.s.m.TransportMasterNodeAction] [elasticsearch-node-1] no known master node, scheduling a retry
[2020-03-17T16:42:06,962][DEBUG][o.e.a.s.m.TransportMasterNodeAction] [elasticsearch-node-1] no known master node, scheduling a retry
[2020-03-17T16:42:06,963][DEBUG][o.e.a.s.m.TransportMasterNodeAction] [elasticsearch-node-1] no known master node, scheduling a retry
My elasticsearch.yml has the below mentioned data:
cluster.name: elk-ISSI
node.name: elasticsearch-node-1
network.host: 127.0.0.1
discovery.zen.ping.unicast.hosts: 127.0.0.1
Can anyone please help me with the fix?