ERR: Seems ther is no OpenSearch running on [ip]:9200 - Will exit

Versions (relevant - OpenSearch/Dashboard/Server OS/Browser):
opensearch.x86_64 2.4.1-1 installed on RHEL 8.7

Describe the issue:
Opensearch installation has been done on a clean RHEL 8.7 machine through the opensearch ansible-playbook installation method.

After a few attempts the installation went fine.

Opensearch service is running

Port 9200 is listening
[root@xxxxx]# netstat -vatn|grep LISTEN | grep 9200
tcp 0 0 127.0.0.1:9200 0.0.0.0:* LISTEN

Port 9200 is open on the localhost
[root@xxxxx]# nmap 127.0.0.1
Starting Nmap 7.70 ( https://nmap.org ) at 2023-02-01 16:18 CET
Nmap scan report for localhost (127.0.0.1)
Host is up (0.000027s latency).
Not shown: 997 closed ports
PORT STATE SERVICE
9200/tcp open wap-wsp

9200 is open in firewall:
[root@xxxxx]# firewall-cmd --list-ports | grep 9200
9200/tcp

Port 9200 is not open accessible from another host in same network segment
[root@yyyyy]# nmap [ip of xxxxx]
Starting Nmap 7.70 ( https://nmap.org ) at 2023-02-01 16:21 CET
Nmap scan report for xxxxx (ip of xxxxx)
Host is up (0.00074s latency).
Not shown: 997 filtered ports
PORT STATE SERVICE
22/tcp open ssh
9090/tcp closed zeus-admin
9200/tcp closed wap-wsp

Nmap done: 1 IP address (1 host up) scanned in 22.17 seconds

As a newby opensearch admin I’m trying to get opensearch running on 1 host in a single-node configuration.

Can anyone please advise on how to get the connection on port 9200 running?

Any help is appreciated

Configuration:

Relevant Logs or Screenshots:

[root@xxxxx]# bash /usr/share/opensearch/plugins/opensearch-security/tools/securityadmin.sh -cacert /usr/share/opensearch/config/root-ca.pem -cert /usr/share/opensearch/config/admin.pem -key /usr/share/opensearch/admin.key -cd /usr/share/opensearch/config/opensearch-security -nhnv -icl -h [ip of xxxxxx]


** This tool will be deprecated in the next major release of OpenSearch **
** [DEPRECATION] Security Plugin Tools will be replaced · Issue #1755 · opensearch-project/security · GitHub **


Security Admin v7
Will connect to [ip of xxxxx]:9200
ERR: Seems there is no OpenSearch running on [ip of xxxxx]:9200 - Will exit

@wilco How many nodes are in the cluster?
Please share the logs and opensearch.yml.

I’am using the opensearch-playbook on a single node with a var:

cluster_type: single-node

I’m currently reïnstalling openseach, opensearch.yml will be uploaded when available again