Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Apache conflicting with IIS |
|
Author |
|
Mike-H
Joined: 29 Dec 2008 Posts: 16
|
Posted: Mon 05 Jan '09 20:36 Post subject: Apache conflicting with IIS |
|
|
Hello,
I have apache 2.2.11 installed on my laptop for local testing. Every time I boot my computer, both IIS and Apache load, both using port 80. I have manually shut off IIS from the Services snap-in and then went into its properties and set it to start manually. But it continues to start automatically when I reboot. So far this hasn't created any conflicts because I usually catch it in time, but I'd rather avoid them. Is there a way to force IIS to not load that actually works?
Thanks for your help,
Mike |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7373 Location: Germany, Next to Hamburg
|
Posted: Mon 05 Jan '09 21:50 Post subject: |
|
|
Do the following: Start | Settings | Control Panel | Administrative Tools | Services. Then click on column label "Name" to list the services in reverse alphabetical order. If IIS is running then you will see an entry named "World Wide Web Publishing" at the top. Double click. Change Startup type to "manual" |
|
Back to top |
|
Mike-H
Joined: 29 Dec 2008 Posts: 16
|
Posted: Mon 05 Jan '09 22:36 Post subject: |
|
|
Yes that is what I have done. I stopped the following services: World Wide Web Publishing, SMTP, IIS Admin. I set all of them to start manually. If I shut down and restart my computer, then IIS is already started as a service, even though it is "supposed" to be started manually. The other two are not started. So I am looking for how to force IIS to stay un-started.
Any other ideas?
Thanks,
Mike |
|
Back to top |
|
PipoDeClown
Joined: 20 Dec 2005 Posts: 77
|
Posted: Tue 06 Jan '09 21:44 Post subject: |
|
|
iis claims control over some ip sockets.
cd to "C:\Inetpub\AdminScripts"
Code: | cscript adsutil.vbs SET W3SVC/DisableSocketPooling TRUE
httpcfg delete iplisten -i 0.0.0.0
httpcfg set iplisten -i 192.168.1.1
cscript proxycfg.vbs -r
|
httpcfg is part of windows support tools http://go.microsoft.com/fwlink/?LinkId=62270
not sure anymore if proxycfg.vbs is installed as part of iis.
192.168.1.1 is ur server with iis and apache. |
|
Back to top |
|
|
|
|
|
|