2

The website is deployed in windows server, the server is used to run the application is Node.js server, while running the website it gives this error

ERROR listen EACCES 0.0.0.0:80

is there any change has to be made in the node.js server or Windows server.

Note: I already create a rule in windows server firewall at INBOUND RULES to allow Port :80 to access the website but it gives the error.

the above inbound rule is created with reference i got from Google.

Please help me.

MadHatter
  • 78,442
  • 20
  • 178
  • 229

1 Answers1

3

Do you have something already listening on port 80? Use netstat to list what programs are listening on what ports:

netstat -anb
Mass Nerder
  • 997
  • 4
  • 6
  • sorry, i deployed the application in **windows server** please help me. – Gopal Krishnan Oct 20 '15 at 06:58
  • netstat works on windows and will tell you what is listening on port 80. Try binding to a different port and see if that works – Mass Nerder Oct 20 '15 at 17:33
  • Thanks! My problem was that IIS was listening on port 80. Simply visiting http://localhost shows the blue landing page for Internet Information Services. – styfle Jun 16 '16 at 20:50