|
Home > Archive > IIS Server > August 2005 > Apache and IIS
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| Benedictum 2005-08-26, 7:55 am |
| I have an assignment to convert php apps to ASP. The php runs under Apache.
I started the ASP project but I have to stop Apache service everytime so
that the IIS can run the ASP. How can I configure IIS so that it uses a
different port?
Thanks,
Victor
| |
|
| it may depend on your version of iis, but look on the website properties on
the iis manager, it should be right on the website tab.
"Benedictum" <benedictum@dominusvobis.com> wrote in message
news:%23u64FyjqFHA.904@TK2MSFTNGP10.phx.gbl...
>I have an assignment to convert php apps to ASP. The php runs under Apache.
>I started the ASP project but I have to stop Apache service everytime so
>that the IIS can run the ASP. How can I configure IIS so that it uses a
>different port?
>
> Thanks,
> Victor
>
| |
| Kristofer Gafvert [MVP] 2005-08-26, 5:59 pm |
| Hello,
Open IIS manager.
Right click the website and click Properties.
Change the port to something else.
--
Regards,
Kristofer Gafvert (IIS MVP)
http://www.gafvert.info/iis/ - IIS Related Info
Benedictum wrote:
>I have an assignment to convert php apps to ASP. The php runs under
>Apache. I started the ASP project but I have to stop Apache service
>everytime so that the IIS can run the ASP. How can I configure IIS so that
>it uses a different port?
>
>Thanks,
>Victor
| |
| Phil Frisbie, Jr. 2005-08-26, 5:59 pm |
| Benedictum wrote:
> I have an assignment to convert php apps to ASP. The php runs under Apache.
> I started the ASP project but I have to stop Apache service everytime so
> that the IIS can run the ASP. How can I configure IIS so that it uses a
> different port?
You can configure either Apache or IIS to use a port other than 80, so take your
pick!
Also, I would question why you are switching from php to ASP since php works
well with IIS, and you will likely create new bugs that need to be fixed.
> Thanks,
> Victor
--
Phil Frisbie, Jr.
Hawk Software
http://www.hawksoft.com
| |
| Chris Adams (MSFT) 2005-08-28, 2:48 am |
| Hey,
The other suggestions are good, but what you are particularly looking for is called "DisableSocketPooling." This metabase property is designed to instruct IIS to *NOT* bind to all IP addresses on the server. This is crucial when you have 2 webservers ru
nning on the same OS installation.
To disable this feature, you can issue this command -
Cscript adsutil.vbs set w3svc/disablesocketpooling 1
The next step is to restart IIS. You will now notice that we only bind to the specific addresses\ports defined in the metabase property - ServerBindings.
If you need more help review the following KB:
How to Disable Socket Pooling: http://support.microsoft.com/defaul...kb;EN-US;238131
It is important to note that this property, although it still exists, is not valid in IIS 6.0. This property does nothing for the W3SVC service in IIS 6.0 -- you instead should review HTTP.sys's IPListenList registry key and\or httpcfg to change this beh
avior.
-----Original Message-----
From: Dave
Posted At: Friday, August 26, 2005 6:08 AM
Posted To: microsoft.public.inetserver.iis
Conversation: Apache and IIS
Subject: Re: Apache and IIS
it may depend on your version of iis, but look on the website properties on
the iis manager, it should be right on the website tab.
"Benedictum" <benedictum@dominusvobis.com> wrote in message
news:%23u64FyjqFHA.904@TK2MSFTNGP10.phx.gbl...
>I have an assignment to convert php apps to ASP. The php runs under Apache.
>I started the ASP project but I have to stop Apache service everytime so
>that the IIS can run the ASP. How can I configure IIS so that it uses a
>different port?
>
> Thanks,
> Victor
>
|
|
|
|
|