0

I installed Jenkins on my windows server and it works when accessing it from localhost:8080.

When I try to access it from outside the server like serveripaddress:8080 it's not accessible.

There is a inbound rule in firewall to named Jenkins for port 8080 for java. enter image description here

running netstat: enter image description here

Any idea what can I do in order to be able to access it from outside the server?

Browsing to localhost:8080/manage there is an alert: It appears that your reverse proxy set up is broken.

Offir
  • 3,252
  • 3
  • 41
  • 73

2 Answers2

1

It's a bit unclear in your question whether you had set up a firewall rule on your local computer or the server.

Make sure you have opened inbound port 8080 on TCP on your servers firewall.

To make sure the firewall is not the issue, you could test by turning off the firewall completley, assuming the server is not exposed to the web.

  • I think it is a firewall related issue, but there is an inbound rule already for port 8080, I will attach a screen shot. – Offir Aug 19 '21 at 06:21
1

I had the same problem.

Final solution: open port 8080 TCP for any program

If I tried to limit it to jenkins.exe or Jenkins service, it would not allow connections. Not sure why.

David Balažic
  • 1,319
  • 1
  • 23
  • 50