Firewall status: "Allowed, Restricted" on a port

I'm trying to run something on my localhost through a port (8080) but I am getting a 404. It should be working properly but I'm not sure why.

enter image description here

In my Resource Monitor, under Network -> Listening Ports, javaw.exe IS running on that port BUT under Firewall Status it says "Allowed, Restricted."

enter image description here

Could this be why it is not letting me access it through this port? How can I fix this? Thanks.

4

1 Answer

As @RussellUhl points out in his comment, you are getting a 404 status code from your web server. So you are communicating with the web server, it just can't locate the file you're requesting, and so the firewall is not your problem.

You can test this by turning off your Firewall temporarily (via the UI, not by disabling the service) and it should behave the same way. If it does then you know your firewall isn't blocking you.

So putting the Firewall aside, if the file requested exists, then it's likely a web server and/or file system permission configuration problem.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like