<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title> &#187; Apache Virtual Domains</title>
	<atom:link href="http://ivansmusings.com/archives/category/apache/feed" rel="self" type="application/rss+xml" />
	<link>http://ivansmusings.com</link>
	<description></description>
	<lastBuildDate>Thu, 20 May 2010 06:06:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<image>
  <link>http://ivansmusings.com</link>
  <url>http://ivansmusings.com/wp-content/plugins/favicon-manager/favicon.ico</url>
  <title></title>
</image>
<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.5.1" -->
	<copyright>Copyright &#xA9; 2010  </copyright>
	<managingEditor>ivan@ivanbayross.com</managingEditor>
	<webMaster>ivan@ivanbayross.com</webMaster>
	<category>posts</category>
	<ttl>1440</ttl>
	<image>
		<url>http://ivansmusings.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title> &#187; Apache Virtual Domains</title>
		<link>http://ivansmusings.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary>Thoughts - Dreams - Hope</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &amp; Culture" />
	<itunes:author></itunes:author>
	<itunes:owner>
		<itunes:name></itunes:name>
		<itunes:email>ivan@ivanbayross.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://ivansmusings.com/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>Creating Virtual Domains Under Apache</title>
		<link>http://ivansmusings.com/archives/320</link>
		<comments>http://ivansmusings.com/archives/320#comments</comments>
		<pubDate>Sun, 19 Oct 2008 00:02:48 +0000</pubDate>
		<dc:creator>ivansmus</dc:creator>
				<category><![CDATA[Apache Virtual Domains]]></category>
		<category><![CDATA[Creating Virtual Domains]]></category>

		<guid isPermaLink="false">http://ivansmusings.com/?p=320</guid>
		<description><![CDATA[When Apache is installed on a M.S. Windows XP / Vista computer the Apache installer places Apache’s file structure in: C:\Program Files\Apache Group\Apache2 Apache’s index file, which is displayed when http://localhost is typed into a Browser window and the Go button or the Enter key is pressed, resides in: C:\Program Files\Apache Group\Apache2\htdocs If you do [...]]]></description>
			<content:encoded><![CDATA[<p>When Apache is installed on a M.S. Windows XP / Vista computer the Apache installer places Apache’s file structure in<strong>:</strong></p>
<p>C:\Program Files\Apache Group\Apache2</p>
<p>Apache’s index file, which is displayed when http://localhost is typed into a Browser window and the Go button or the Enter key is pressed, resides in<strong>:</strong></p>
<p>C:\Program Files\Apache Group\Apache2\htdocs</p>
<p>If you do not want Apaches default index page to be displayed when http://localhost is typed in a Browser’s address bar and the <strong>Go</strong> button or the <strong>Enter</strong> key is pressed, simply create your own HTML file, name it index.html and place this in<strong>: </strong></p>
<p>C:\Program Files\Apache Group\Apache2\htdocs</p>
<p>Now if you enter http://localhost in a Browser’s address bar and press Go or the Enter key your HTML page will be rendered in the Browser’s window.</p>
<p>This is an indication that Apache is working perfectly.</p>
<p>Having said that, it’s definitely not good practice to place all your website’s resources within the folder that Apache uses for its own resources i.e.:</p>
<p>C:\Program Files\Apache Group\Apache2\htdocs</p>
<p>It’s good programming practice to keep your website’s resources separate from Apache’s internal resources.</p>
<p>All that is required is that you create a separate folder, anywhere on your hard disk and place your website resources within that folder.</p>
<p>For example:<strong> d:\mysite</strong></p>
<p>Now all that remains is that Apache needs to be informed that the folder<strong>d:\mysite</strong> is where you’ve loaded all your website’s resources.</p>
<p>You do this by creating a <strong>Virtual Domain</strong> under Apache and binding this domain to the folder where your website’s resources are placed.</p>
<p>To create a virtual domain you have to make changes within Apache’s <strong>httpd.conf</strong> file.</p>
<p>Apache’s httpd.conf file is resides in<strong>:</strong></p>
<p>C:\Program Files\Apache Group\Apache2\conf</p>
<p>Navigate to that folder and the first thing to do is to make a copy of Apache’s httd.conf file and save this within Apache’s conf folder i.e. <strong>httpd_copy.conf</strong>.</p>
<p>This way if you’ve made some errors when adding a virtual domain to the httpd.conf file and Apache stops working, all you have to do is to overwrite Apache’s httpd.conf file with the copy you’ve made, then ensure that the file is re-named httpd.conf and Apache should start up again.</p>
<p><strong>NOTE:</strong> In case you do not keep a copy of Apache’s httpd.conf and you’ve damaged the original httpd.conf file you have to re-install Apache from scratch, to get a working copy of Apache web server.</p>
<p>Now open the httpd.conf file in your favorite ASCII editor, (Notepad would do just fine). Scroll right down to the end of the httpd.conf file and you will notice Apache’s virtual domain example.</p>
<p>The code there should look something like<strong>:</strong></p>
<p>#<strong>NameVirtualHost </strong>*:80</p>
<p>#VirtualHost example<strong>:</strong><br />
 # Almost any Apache directive may go into a VirtualHost container.<br />
 # The first VirtualHost section is used for requests without a known<br />
 # server name.<br />
 #<virtualhost><br />
 # ServerAdmin webmaster@dummy-host.example.com<br />
 # DocumentRoot /www/docs/dummy-host.example.com<br />
 # ServerName dummy-host.example.com<br />
 # ErrorLog logs/dummy-host.example.com-error_log<br />
 # CustomLog logs/dummy-host.example.com-access_log common<br />
 # </virtualhost><br />
 # <strong></strong></p>
<p>The <strong>NameVirtualHost</strong> and <strong>VirtualHost</strong> directives are what we are interested in.</p>
<p>Simply copy the whole lot from <strong># NameVirtualHost </strong>to<strong></strong> and paste this below the original code.</p>
<p>Then <strong>delete</strong> the <strong>#</strong> which appears before each entry as shown below.</p>
<p><em>Please notice the section where the <strong>#</strong> are <strong>not deleted</strong>.</em></p>
<p>NameVirtualHost *:80</p>
<p># VirtualHost example:<br />
 # Almost any Apache directive may go into a VirtualHost container.<br />
 # The first VirtualHost section is used for requests without a known<br />
 # server name.</p>
<p><virtualhost *:80><br />
 ServerAdmin webmaster@dummy-host.example.com<br />
 DocumentRoot /www/docs/dummy-host.example.com<br />
 ServerName dummy-host.example.com<br />
 ErrorLog logs/dummy-host.example.com-error_log<br />
 CustomLog logs/dummy-host.example.com-access_log common<br />
 </virtualhost></p>
<p><strong>Next:</strong></p>
<p>Change<br />
 NameVirtualHost *:80</p>
<p>To read as:<br />
 NameVirtualHost 127.0.0.1:80</p>
<p>Notice that the <strong>#</strong> has been deleted <br />
 And <br />
 The local host ip <strong>127.0.0.1</strong> has replaced the <strong>*</strong> in this entry</p>
<p>Now let’s take a look at the <virtualhost </VirtualHost> XML segment.</virtualhost></p>
<p><virtualhost 127.0.0.1:80><br />
 ServerAdmin ivan@ivanbayross.com<br />
 DocumentRoot d:\mysite<br />
 ServerName www.mysite.com<br />
 ErrorLog d:\mysite\errors\errorlog<br />
 </virtualhost></p>
<p>Notice that the<strong>:</strong><br />
 <strong>ServerAdmin</strong> has a legitimate Email ID bound to it.<br />
 <strong>DoumentRoot</strong> has the physical path to your websites resources<br />
 <strong>ServerName</strong> can have any name bound to it, I’ve chosen <em>www.mysite.com<br />
 </em><strong>ErrorLog </strong>has the path to where Apache can keep its error log file</p>
<p><strong>NOTE:</strong> Do not forget to create the folder <strong>d:\mysite\errors</strong>. Then using Notepad create an empty file named <strong>errorlog</strong> within this folder.  <em>Please notice the absence of any file extension.</em></p>
<p>Save the httpd.conf you’ve been editing and re-start Apache.</p>
<p>To restart Apache simply <strong>right </strong>click on the <img src="http://www.ivansmusings.com/wp-includes/images/apache/virtualdomains/apacheicon.gif" alt="" /> icon in the task bar and a popup window will appear as shown in diagram 1.</p>
<table border="0" cellspacing="0" cellpadding="0" width="45%">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/virtualdomains/apachemenu.gif" alt="" /></td>
</tr>
<tr>
<td>Diagram 1</td>
</tr>
</tbody>
</table>
<p>Click on Open Apache Monitor and a popup window will appear as shown in diagram 2</p>
<table border="0" cellspacing="0" cellpadding="0" width="65%">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/virtualdomains/apacherestart.gif" alt="" /></td>
</tr>
<tr>
<td align="left">Diagram 2</td>
</tr>
</tbody>
</table>
<p>Simply click the Restart button.  If all is well Apache will startup perfectly.</p>
<p>There’s a few more steps to be carried out to check is you’ve created the Virtual domain correctly, they are<strong>:</strong><br />
 Making an entry in the <strong>hosts</strong> file.<br />
 Using the file Browser navigate to the folder C:\Windows\System32\drivers\etc<br />
 Within this folder there will be a file called <strong>hosts</strong>.</p>
<p><strong>NOTE:</strong> If you have never used the hosts file ever before then you will find a file called <strong>hosts.sam</strong> or <strong>hosts.tmp</strong> in this folder. Copy this file to a file named <strong>hosts</strong> and you are done.  Then <strong>edit</strong> the contents of <strong>hosts</strong> as indicated below.</p>
<p># Copyright (c) 1993-2006 Microsoft Corp.<br />
 #<br />
 # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.<br />
 #<br />
 # This file contains the mappings of IP addresses to host names. Each<br />
 # entry should be kept on an individual line. The IP address should<br />
 # be placed in the first column followed by the corresponding host name.<br />
 # The IP address and the host name should be separated by at least one<br />
 # space.<br />
 #<br />
 # Additionally, comments (such as these) may be inserted on individual<br />
 # lines or following the machine name denoted by a &#8216;#&#8217; symbol.<br />
 #<br />
 # For example:<br />
 #<br />
 #      102.54.94.97     rhino.acme.com          # source server<br />
 #       38.25.63.10     x.acme.com              # x client</p>
<p><strong>NOTE:</strong> Between the ip and the site name you must use the <strong>Tab</strong> key.</p>
<p># For example:<br />
 #      102.54.94.97     rhino.acme.com          # source server<br />
 #       38.25.63.10     x.acme.com              # x client host</p>
<p>127.0.0.	www.mysite.com</p>
<p>Save hosts and exit.</p>
<p>Finally place a unique index.html file within the folder d:\mysite.  Now when you enter the URL in the Browser address bar: <strong>http://www.mysite.com</strong> Apache will display the contents of the index.html file you’ve place in the folder d:\mysite.</p>
<p>If all this works perfectly then you can build the rest of your website within the folder d:\mysite</p>

<div class="sociable">
<span class="sociable_tagline">
<strong>Share and Enjoy:</strong><br />
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fivansmusings.com%2Farchives%2F320&amp;title=Creating%20Virtual%20Domains%20Under%20Apache" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fivansmusings.com%2Farchives%2F320&amp;title=Creating%20Virtual%20Domains%20Under%20Apache" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://ivansmusings.com/archives/320" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fivansmusings.com%2Farchives%2F320&amp;title=Creating%20Virtual%20Domains%20Under%20Apache" title="Reddit" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fivansmusings.com%2Farchives%2F320&amp;title=Creating%20Virtual%20Domains%20Under%20Apache" title="Webnews" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fivansmusings.com%2Farchives%2F320" title="Technorati" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fivansmusings.com%2Farchives%2F320" title="Facebook" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fivansmusings.com%2Farchives%2F320&amp;title=Creating%20Virtual%20Domains%20Under%20Apache" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.squidoo.com/lensmaster/bookmark?http%3A%2F%2Fivansmusings.com%2Farchives%2F320" title="Squidoo" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/squidoo.png" title="Squidoo" alt="Squidoo" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fivansmusings.com%2Farchives%2F320&amp;=Creating%20Virtual%20Domains%20Under%20Apache" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a href="http://www.bloglines.com/sub/http://ivansmusings.com/archives/320" title="Bloglines" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/bloglines.png" title="Bloglines" alt="Bloglines" class="sociable-hovers" /></a></li>
	<li><a href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fivansmusings.com%2Farchives%2F320&amp;title=Creating%20Virtual%20Domains%20Under%20Apache" title="Blogosphere News" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
</ul>
</div>
<hr />
<p><small>© ivansmus for <a href="http://ivansmusings.com"></a>, 2008. |
<a href="http://ivansmusings.com/archives/320">Permalink</a> |
<a href="http://ivansmusings.com/archives/320#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://ivansmusings.com/archives/320&title=Creating Virtual Domains Under Apache">del.icio.us</a>
<br/>
Post tags: <a href="http://ivansmusings.com/archives/tag/apache-virtual-domains" rel="tag">Apache Virtual Domains</a>, <a href="http://ivansmusings.com/archives/tag/creating-virtual-domains" rel="tag">Creating Virtual Domains</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://ivansmusings.com/archives/320/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Apache web server on XP</title>
		<link>http://ivansmusings.com/archives/67</link>
		<comments>http://ivansmusings.com/archives/67#comments</comments>
		<pubDate>Sun, 28 Sep 2008 04:54:25 +0000</pubDate>
		<dc:creator>ivansmus</dc:creator>
				<category><![CDATA[Apache Virtual Domains]]></category>
		<category><![CDATA[.msi]]></category>
		<category><![CDATA[Apache home]]></category>
		<category><![CDATA[Apache install tutorial]]></category>
		<category><![CDATA[Apache URL]]></category>
		<category><![CDATA[Download Apache]]></category>
		<category><![CDATA[Install Apache]]></category>

		<guid isPermaLink="false">http://ivansmusings.com/?p=67</guid>
		<description><![CDATA[This tutorial shows you how to install Apache on any computer running Windows XP / Vista 32 bit. Prior installing Apache it’s necessary to get its executable from: Apache.org On entering the URL into the Browser’s address bar and clicking Go or pressing the Enter key the page as shown in diagram 1 will be [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial shows you how to install Apache on any computer running Windows XP / Vista 32 bit.</p>
<p>Prior installing Apache it’s necessary to get its executable from<strong>:</strong></p>
<p><a href="http://www.apache.org" target="_blank">Apache.org</a></p>
<p>On entering the URL into the Browser’s address bar and clicking Go or pressing the Enter key the page as shown in diagram 1 will be rendered in the Browser.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/1apachehome.gif" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 1.</p>
</td>
</tr>
</tbody>
</table>
<p>When Apache’s home page loads take a look at its right hand side and locate the link HTTP Server. On click of the HTTP server link the page as shown in diagram 2 is rendered in the Browser.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/3apachedownload.gif" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 2.</p>
</td>
</tr>
</tbody>
</table>
<p>Locate the Download link in the Apache 2.X.X Released as shown in diagram 2. On click of this link the page as shown in diagram 3 is rendered in the Browser.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/2apachebinaries.gif" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 3.</p>
</td>
</tr>
</tbody>
</table>
<p>From the Win32Source select the Apache binary that you desire. The choices available are expanded briefly in table 1.</p>
<p>Choices available for Apache Binaries<strong>:</strong></p>
<table border="1" cellspacing="0" cellpadding="4" width="65%">
<tbody>
<tr>
<td colspan="2">Win32 Source</td>
</tr>
<tr>
<td>1</td>
<td>Win32 Binary without crypto (no mod_ssl) (MSI Installer)</td>
</tr>
<tr>
<td>2</td>
<td>Win32 Binary including OpenSSL 0.9.8h (MSI Installer)</td>
</tr>
</tbody>
</table>
<p>Table 1.</p>
<p>Any of the above binaries will load successfully on Windows XP.  If you want to play only with Apache then the Win 32 source should be just fine, i.e. option 1.</p>
<p>If you want to play with Apache and use SSL then choose Win32 Binary including OpenSSL 0.9.8h (MSI Installer) i.e. option 2</p>
<p>I am using Firefox as my Browser of choice, hence On click of either option 1 or 2 the file download window pops up as shown in diagram 3.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/4savefile.gif" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 4.</p>
</td>
</tr>
</tbody>
</table>
<p>Click the File Save button and save the Apache binary chosen to an appropriate subdirectory on the hard disk.<br />
For example <strong>c:\webserver.</strong></p>
<p><span id="inst2">Installing Apache<strong>:</strong></span></p>
<p>Navigate to the previously created folder (<em>c:\webserver</em>) and <strong>double click</strong> the Apache executable file in that folder. This will start the installation of Apache web server on the computer. Simply follow the instructions shown by the installer<strong>:</strong></p>
<p>The first screen that renders in the Browser On click of Apache&#8217;s executable is as shown in diagram 5.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/01.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 5.</p>
</td>
</tr>
</tbody>
</table>
<p>Click <strong>Next</strong></p>
<p>Select &#8216;I accept terms in the license agreement&#8217; radio button as shown in diagram 6. Click <strong>Next</strong>.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/02.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 6.</p>
</td>
</tr>
</tbody>
</table>
<p>Click <strong>Next</strong>.</p>
<p>The screen as shown in diagram 7 renders in the Browser.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/03.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 7.</p>
</td>
</tr>
</tbody>
</table>
<p>Click <strong>Next</strong>. The screen as shown in diagram 8 renders in the Browser</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/04.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 8.</p>
</td>
</tr>
</tbody>
</table>
<p>In the Network <span style="text-decoration: underline;">D</span>omain text box type in <strong>localhost </strong></p>
<p>In the <span style="text-decoration: underline;">S</span>erver Name text box type in <strong>localhost </strong></p>
<p>In the Administrators <span style="text-decoration: underline;">E</span>mail Address text box type in a legitimate Email address to which Apache can send messages to. We&#8217;ve used info@localhost.  We have a mail box on the hosting server with the same name. Click <strong>Next</strong>.  The screen as shown in diagram 9 is rendered in the Browser.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/05.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 9.</p>
</td>
</tr>
</tbody>
</table>
<p>Select <strong>Custom</strong> and click <strong>Next</strong>.  The screen as shown in diagram 10 is rendered in the Browser</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/06.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 10.</p>
</td>
</tr>
</tbody>
</table>
<p>Because we want our server to be installed in <strong>c:\webserver</strong> click <strong>Change </strong>to change inform Apache&#8217;s installer where you want Apache&#8217;s installation to be done.  The screen as shown in diagram 11 is rendered in the Browser.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/07.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 11.</p>
</td>
</tr>
</tbody>
</table>
<p>Navigate to <strong>C:\webserver </strong>and then click <strong>OK</strong>.  The screen as shown in diagram 12 is rendered in the Browser. Click <strong>Next</strong>.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/08.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 12.</p>
</td>
</tr>
</tbody>
</table>
<p>Apache&#8217;s installer has collected all the information it needs to successfully install Apache on the computer.  Click <strong>Next </strong>to begin the Apache&#8217;s install process. After the install process completes the screen as shown in diagram 13 is rendered in the Browser indicating that Apache has been successfully installed on the computer.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/09.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 13.</p>
</td>
</tr>
</tbody>
</table>
<p>Click <strong>Finish</strong> to complete Apache&#8217;s install process.  You should notice a small icon in the system tray as shown in diagram 14.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/10.jpg" alt="picture 1" align="left" height="33px" width="44px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 14.</p>
</td>
</tr>
</tbody>
</table>
<p><span id="inst">Testing Apache&#8217;s Installation</span></p>
<p>Type in the URL <strong>http://localhost</strong> in the Browser&#8217;s address bar and press <strong>Go</strong> or <strong>Enter</strong>.  The screen as shown in diagram 15 should render in the Browser indicating that Apache has been installed correctly.</p>
<table border="0" cellspacing="0" cellpadding="4" width="405px">
<tbody>
<tr>
<td align="left" valign="top"><img src="http://www.ivansmusings.com/wp-includes/images/apache/11.jpg" alt="picture 1" align="left" height="300px" width="400px" /></td>
</tr>
<tr>
<td align="left" valign="top">
<p>Diagram 15.</p>
</td>
</tr>
</tbody>
</table>
<p>Apache has been installed successfully and is running perfectly on your computer</p>

<div class="sociable">
<span class="sociable_tagline">
<strong>Share and Enjoy:</strong><br />
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fivansmusings.com%2Farchives%2F67&amp;title=Installing%20Apache%20web%20server%20on%20XP%20" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fivansmusings.com%2Farchives%2F67&amp;title=Installing%20Apache%20web%20server%20on%20XP%20" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://ivansmusings.com/archives/67" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fivansmusings.com%2Farchives%2F67&amp;title=Installing%20Apache%20web%20server%20on%20XP%20" title="Reddit" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fivansmusings.com%2Farchives%2F67&amp;title=Installing%20Apache%20web%20server%20on%20XP%20" title="Webnews" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fivansmusings.com%2Farchives%2F67" title="Technorati" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fivansmusings.com%2Farchives%2F67" title="Facebook" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fivansmusings.com%2Farchives%2F67&amp;title=Installing%20Apache%20web%20server%20on%20XP%20" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.squidoo.com/lensmaster/bookmark?http%3A%2F%2Fivansmusings.com%2Farchives%2F67" title="Squidoo" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/squidoo.png" title="Squidoo" alt="Squidoo" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fivansmusings.com%2Farchives%2F67&amp;=Installing%20Apache%20web%20server%20on%20XP%20" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
	<li><a href="http://www.bloglines.com/sub/http://ivansmusings.com/archives/67" title="Bloglines" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/bloglines.png" title="Bloglines" alt="Bloglines" class="sociable-hovers" /></a></li>
	<li><a href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fivansmusings.com%2Farchives%2F67&amp;title=Installing%20Apache%20web%20server%20on%20XP%20" title="Blogosphere News" rel="nofollow" target="_blank"><img src="http://ivansmusings.com/wp-content/plugins/sociable-zyblog-edition/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
</ul>
</div>
<hr />
<p><small>© ivansmus for <a href="http://ivansmusings.com"></a>, 2008. |
<a href="http://ivansmusings.com/archives/67">Permalink</a> |
<a href="http://ivansmusings.com/archives/67#comments">No comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://ivansmusings.com/archives/67&title=Installing Apache web server on XP">del.icio.us</a>
<br/>
Post tags: <a href="http://ivansmusings.com/archives/tag/msi" rel="tag">.msi</a>, <a href="http://ivansmusings.com/archives/tag/apache-home" rel="tag">Apache home</a>, <a href="http://ivansmusings.com/archives/tag/apache-install-tutorial" rel="tag">Apache install tutorial</a>, <a href="http://ivansmusings.com/archives/tag/apache-url" rel="tag">Apache URL</a>, <a href="http://ivansmusings.com/archives/tag/download-apache" rel="tag">Download Apache</a>, <a href="http://ivansmusings.com/archives/tag/install-apache" rel="tag">Install Apache</a><br/>
</small></p>]]></content:encoded>
			<wfw:commentRss>http://ivansmusings.com/archives/67/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
