Connection refused with Tomcat 7

前端 未结 2 439
有刺的猬
有刺的猬 2021-01-18 09:11

I have a Tomcat instance running on Jelastic and there are two deployed apps - for \'/foo\' context and for \'/bar\' context.

During handling request to \'/foo\' we

相关标签:
2条回答
  • 2021-01-18 09:40

    Connection refused definitely means network issue. One of the potential reason is that your application tries to establish connection using http header "host" value etc. and in general header "host" value does not contain 8080 port inside string -BUT- tomcat at Jelastic is running on port 8080, so you can either try connect to your second application forcibly specifying port 8080 or contact your support and ask them to set iptables rule that would redirect all requests (inside your tomcat container) from 80 to 8080 port.

    0 讨论(0)
  • 2021-01-18 09:46

    A "connection refused" message means that something was unable to open a network connection at the transport level. This most likely means that the service you are trying to talk to is not listening for new connections on the specific IP and port number that were used in the connection attempt.

    Check:

    1. That the request that is being refused is using the correct IP and port number.
    2. That your tomcat service is properly configured to listen on that IP and port.

    Bear in mind that your system may have multiple IP addresses, and you need to listen on each one that you wish to use. Also bear in mind that "local host" is typically a different IP address.

    Then if neither of the above is the problem:

    1. If there is a possibility of network level or local firewalling blocking the traffic, check that.
    2. If the possibility of "strangeness" due to complicated virtual networking, check that.

    It looks like that the Tomcat somehow filter incoming connections from the same host.

    Tomcat doesn't "filter" like that. But it is quite possible that you haven't configured tomcat to listen for the requests. Check the "server.xml" file to see if you have configured that correctly.


    FWIW - I don't think this is the Tomcat7 CSRF filter. According to the documentation, that would return a HTTP response. In fact, I can't see how anything inside the receiving Tomcat could generate a "connection refused" state by any means other than not listening for connections in the first place.

    0 讨论(0)
提交回复
热议问题