Elasticsearch 7.4 does not start

I am trying to install an instance of elasticsearch and I am using the following config file:

cluster.name: elasticsearch
node.name: hostname
path.data: /var/lib/elasticsearch
path.logs: /var/log/elasticsearch
# Set the bind address to a specific IP (IPv4 or IPv6):
network.host: [_eth0_, _local_]
discovery.seed_hosts: ["hostname"]
cluster.initial_master_nodes: ["hostname"]
node.master: true
node.data: true
node.ingest: true
node.ml: false

When I start my service, it seems to start but I get the following logs in my elasticsearch.log and the service restarts:

[2019-10-23T20:14:21,303][INFO ][o.e.n.Node ] [hostname ] started
[2019-10-23T20:14:21,675][INFO ][o.e.l.LicenseService ] [hostname ] license [ec79759f-d37c-4699-9071-600547cf50b0] mode [basic] - valid
[2019-10-23T20:14:21,677][INFO ][o.e.x.s.s.SecurityStatusChangeListener] [hostname] Active license is now [BASIC]; Security is disabled
[2019-10-23T20:14:21,694][INFO ][o.e.g.GatewayService ] [hostname ] recovered [0] indices into cluster_state
[2019-10-23T20:14:29,866][INFO ][o.e.n.Node ] [hostname ] stopping ...
[2019-10-23T20:14:29,893][INFO ][o.e.x.w.WatcherService ] [hostname ] stopping watch service, reason [shutdown initiated]
[2019-10-23T20:14:29,896][INFO ][o.e.x.w.WatcherLifeCycleService] [hostname ] watcher has stopped and shutdown
[2019-10-23T20:14:29,908][INFO ][o.e.x.m.p.l.CppLogMessageHandler] [hostname ] [controller/32535] [Main.cc@150] Ml controller exiting
[2019-10-23T20:14:29,911][INFO ][o.e.x.m.p.NativeController] [hostname ] Native controller process has stopped - no new native processes can be started
[2019-10-23T20:14:29,938][INFO ][o.e.n.Node ] [hostname stopped
[2019-10-23T20:14:29,939][INFO ][o.e.n.Node ] [hostname ] closing ...
[2019-10-23T20:14:29,962][INFO ][o.e.n.Node ] [hostname ] closed

This settings were working on my 7.3 version. Has anything changed? Am I missing something?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.