Hi everyone,
I have IIS 7.5 on my server with 5 or more sites. All sites bind to own IPs.
I have to install tomcat on this server to run another site with own IP.
Issue: IIS is listening all ports by default, so tomcat can't work correctly on port 80. I need that new site (under tomcat) works also on port 80, not by any other. My new site now works on port 8090.
Here is output of netstat:
C:\Users\Administrator>netstat -ano | findstr ":80"
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4
Should I remove 0.0.0.0:80 from here, or how should I configure IIS and tomcat?