Elastic Search 7.3 not working with ip address in redhat 7 server

hello,
Elasticsearch not responding to ip address
please advise on this

changes done in elasticsearch.yml ::
cluster.name: "my_cluster"
node.name: testing
network.host: 15.140.2.227
http.port: 9200
discovery.seed_hosts:

  • 15.140.2.227:9300

elasticsearch is running fine no error in server but with ip address it is not working 15.140.2.227:9200

image

if i check with the ip 15.140.2.227 address with out port number there is an error


shibsp::ListenerException

The system encountered an error at Tue Aug 27 19:36:05 2019

To report this problem, please contact the site administrator at root@localhost.

Please include the following message in any email:

shibsp::ListenerException at (https://hostname:1443/sm/index.do)

Cannot connect to shibd process, a site adminstrator should be notified.

Thanks
Sachin

issue resolved ::

port 9200 is disabled so just i enabled now it is working

iptables -I INPUT -p tcp --dport 9200 --syn -j ACCEPT

iptables -I INPUT -p udp --dport 9200 -j ACCEPT

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