3

I get this message when i try to running jenkins (localhost:8080) on a debian server.

Do you have any idea about what's wrong ?

Thanks!

BaderTech
  • 31
  • 1
  • 4

1 Answers1

1

see if it's actually listening on the port 8080, you can make sure using

netstat -nlp | grep 8080
Armin
  • 113
  • 4
  • 1
    Thanks for your feedback Armin. I got this : tcp6 0 0 :::8080 :::* LISTEN 2243/java by the way, now i can access by w3m http://localhost:8080 BUT, i got this in the bottom localhost contacted. Waiting for reply (and obviously, it take so much time, without response) – BaderTech Sep 26 '13 at 08:53
  • I guess that your application is only listening on Ipv6, you should either disable ipv6 interface or alter your code to listen on ipv4 – Armin Sep 27 '13 at 12:17