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

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 -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 and it did not work either.

Any help is greatly appreciated.