Install multiple Apache Instances on a single Windows 2003 machine - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T07:11:38Zhttp://stackoverflow.com/feeds/question/446571http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/446571/install-multiple-apache-instances-on-a-single-windows-2003-machine0Install multiple Apache Instances on a single Windows 2003 machineNgu Soon Hui2009-01-15T12:36:25Z2009-09-02T19:08:35Z
<p>On my server I have installed a web application that comes with a bundle of Apache Services. Hence all the apache related dlls are located in the application folder's sub directory (e.g., C:\Program Files\MyWebApp\apache2). It seems that when the windows 2003 server is started all the request will be served by that apache services.</p>
<p>Now I want to install another instances of Apache and MYSQL, PhP to the default Program Folders ( e.g., C:\Program Files\Apache Service Foundation etc), however upon installation I can't configure it-- there is no way to get the second Apache Service up and running. </p>
<p>When I am installing the second Apache, I set the network domain name to "pm2", and choose the Port 8080 option. However, when apache is finished in installation, when I type in <a href="http://pm2:8080" rel="nofollow">http://pm2:8080</a>, I got a page cannot be displayed error.</p>
<p>Is there anything I miss?</p>
http://stackoverflow.com/questions/446571/install-multiple-apache-instances-on-a-single-windows-2003-machine/453070#4530701Answer by Uresu for Install multiple Apache Instances on a single Windows 2003 machineUresu2009-01-17T09:37:19Z2009-01-17T09:37:19Z<p>Does the original site still work ok? If it does, there is a chance that the second installation of apache is trying to install itself as a service with the same name as the first instance and therefore, failing.</p>
<p>To install apache as a second service use:</p>
<pre><code>httpd -k install -n "Apache Instance 2" -f "C:\Program Files\Apache Service Foundation\path\to\your\conf file.conf"
</code></pre>
http://stackoverflow.com/questions/446571/install-multiple-apache-instances-on-a-single-windows-2003-machine/453078#4530782Answer by Pervez Choudhury for Install multiple Apache Instances on a single Windows 2003 machinePervez Choudhury2009-01-17T09:52:12Z2009-01-17T09:52:12Z<p>A couple of thoughts:</p>
<ul>
<li>Have you added an entry to either your DNS server or hosts file to ensure that PM2 is going to the correct server?</li>
<li>Try starting the second Apache instance from the command line, this way you will get error messages displayed on the console so that you can see if there are any errors preventing it from starting properly.</li>
</ul>
http://stackoverflow.com/questions/446571/install-multiple-apache-instances-on-a-single-windows-2003-machine/1369565#13695652Answer by NVRAM for Install multiple Apache Instances on a single Windows 2003 machineNVRAM2009-09-02T19:08:35Z2009-09-02T19:08:35Z<p>I know this is an old question, but in general you won't need to start a second <strong>process</strong> of Apache, much less <strong>install</strong> a second copy of the program. Look through the Apache manuals, specifically at <strong>Listen</strong> and <strong>VirtualHost</strong> for details.</p>
<p>If there are version conflicts for some requirements <em>on the server side</em> then this may not apply to your case, it wasn't clear from your post.</p>