Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] no response is sent

Is there a firewall blocking access to that port on that server?  An easy way to test is to:

1) stop jetty
2) use netcat to listen on the same port:
   $ sudo nc -l <port>
3) try to connect with telnet (from another machine):
   $ telnet <host> <port>

If messages from the telnet client don't get to netcat then something (probably the firewall) is in the way.

-Andrew

On 14-05-26 03:53 AM, Itamar Farchy wrote:
> hi im using jetty v9.1.2 and im facing a problem.
> i have a standalone jetty http server configured to work on a certain url.
> and when connecting via browser resources are loaded.
>  
> i have 2 unix machines with the same softwere and java version,
> yet in one of the the server is starting with no errors but no response is sent when connecting via browser.
>  
>  
> 
> 
> _______________________________________________
> jetty-users mailing list
> jetty-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/jetty-users
> 



Back to the top