IIS6.0 W2K3 Disabling Socket Pooling
am 08.03.2006 13:48:45 von Jan SusanikHI folks, I need help with Socket pooling in IIS6.0.We have a web
server with 10 Web sites in IIS and every application is bind to
different IP address. All this websites runs on http port 80. There is
also Apache Tomcat web server running on dedicated IP adress with 2
websites running on https 443 port. We have desided that one IIS
website will be reconfigured to run on https 443 port with SSL
certificate. I have created the new site and added certificate
succesfully but site doesnt want to start because port 443 is used by
Tomcat server. I have found a sollution here ->
http://www.endofnow.com/?p=60 (note. I know that disabling socket
pooling is different in IIS6.0 than IIS5.0). Tomcat is using now only
one IP for 443 port and so I did this on IIS6.0:
install SupportTools
cd C:\Program Files\Support Tools
net stop http /y
httpcfg set iplisten -i 10.0.0.1:80 (addres binded to one of IIS
websites which uses http)
httpcfg set iplisten -i 10.0.0.2:443 (addres binded to the IIS
website which will use https)
httpcfg.exe query iplisten
net start w3svc
Now I can start the https application in IIS and its running ok with
Tomcat but the http applications doesnt run. Where did I made the
mistake?
Thanks