elasticsearch – Unable to start kibana using systemctl
I am trying to setup ELK on my Ubuntu (version 22.04). I was able to setup ElasticSearch version 7.17.15
After starting the ElasticSearch service, I tried setting up Kibana by following the below steps:
sudo apt-get install kibana sudo nano /etc/kibana/kibana.yml
and uncommenting the lines server.port: 5601
server.host: "localhost"
elasticsearch.hosts: ["http://localhost:9200"]
After this,when I try to start the kibana service by running the command sudo systemctl start kibana
, I get the error:
Failed to start kibana.service: Unit kibana.service failed to load properly, please adjust/correct and reload service manager: Device or resource busy.
See system logs and ‘systemctl status kibana.service’ for details.
I was expecting that the kibana service would start on port 5601.
Read more here: Source link