# Cannot install Open Distro Kibana (RPM) on AWS Linux 2

**URL:** https://forum.opensearch.org/t/cannot-install-open-distro-kibana-rpm-on-aws-linux-2/1136
**Category:** Build
**Created:** [July 15, 2019, 3:12am UTC](https://forum.opensearch.org/t/cannot-install-open-distro-kibana-rpm-on-aws-linux-2/1136 "2019-07-15T03:12:51Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![chriset](https://avatars.discourse-cdn.com/v4/letter/c/e8c25b/32.png) [@chriset](https://forum.opensearch.org/u/chriset)
#### Post date: [July 15, 2019, 3:12am UTC](https://forum.opensearch.org/t/cannot-install-open-distro-kibana-rpm-on-aws-linux-2/1136/1 "2019-07-15T03:12:51Z")

</div>

I installed Open Distro ES on AWS Linux 2 and it went fine.  
However after installing Kibana on the same node, I was unable to start Kibana.

sudo service kibana status shows “kibana is not running”. Accessing kibana from the browser using the EC2 instance’s IP does not work either.

I did not modify the default configuration of either ES or Kibana.  
Here’re my EC2 Launch Commands:

#!/bin/bash  
yum update -y  
cd /etc/yum.repos.d/  
curl [https://d3g5vo6xdbdb9a.cloudfront.net/yum/opendistroforelasticsearch-artifacts.repo](https://d3g5vo6xdbdb9a.cloudfront.net/yum/opendistroforelasticsearch-artifacts.repo) -o opendistroforelasticsearch-artifacts.repo  
yum install -y java-1.8.0-openjdk-devel  
ln -s /usr/lib/jvm/java-1.8.0/lib/tools.jar /usr/share/elasticsearch/lib/  
yum install -y opendistroforelasticsearch  
yum install -y opendistroforelasticsearch-kibana  
/bin/systemctl daemon-reload  
/bin/systemctl enable elasticsearch.service  
/bin/systemctl daemon-reload  
/bin/systemctl enable kibana.service  
systemctl start elasticsearch.service  
systemctl start kibana.service

I tried changing the kibana network host to [https://0.0.0.0:9200](https://0.0.0.0:9200) and it did not work either.

Any help is greatly appreciated.

---

<div class="post-metadata">

### Author: ![kris](https://sea1.discourse-cdn.com/flex019/user_avatar/forum.opensearch.org/kris/32/2208_2.png) [@kris](https://forum.opensearch.org/u/kris)
#### Post date: [February 7, 2023, 6:38pm UTC](https://forum.opensearch.org/t/cannot-install-open-distro-kibana-rpm-on-aws-linux-2/1136/2 "2023-02-07T18:38:19Z")

</div>


