<?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/"
	>

<channel>
	<title>Tech Blog &#187; server</title>
	<atom:link href="http://informationideas.com/news/category/server/feed/" rel="self" type="application/rss+xml" />
	<link>http://informationideas.com/news</link>
	<description>Using technology to help your business</description>
	<lastBuildDate>Fri, 23 Jul 2010 06:24:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Fail2ban does not start after reboot</title>
		<link>http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/</link>
		<comments>http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 08:10:39 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[admin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=137</guid>
		<description><![CDATA[This problem was identified with the following configuration: Ubuntu 8.04 fail2ban Problem: After fail2ban install, everything works fine, but after reboot fail2ban does not start. Manual /etc/init.d/fail2ban restart fails also. Cause: Fail2ban looks for fail2ban.sock in /var/run/fail2ban/ During reboot, that directory is removed. Fail2ban assumes it is there and fails on restart. Solution: Make sure [...]]]></description>
			<content:encoded><![CDATA[<p>This problem was identified with the following configuration:<br />
Ubuntu 8.04<br />
fail2ban</p>
<p>Problem: After fail2ban install, everything works fine, but after reboot fail2ban does not start. Manual <code>/etc/init.d/fail2ban restart</code> fails also.</p>
<p>Cause: Fail2ban looks for fail2ban.sock in<br />
<code>/var/run/fail2ban/</code><br />
During reboot, that directory is removed. Fail2ban assumes it is there and fails on restart.</p>
<p>Solution: Make sure the directory exists during start of fail2ban. Edit the init.d for fail2ban to fix this.<br />
<code>sudo vi /etc/init.d/fail2ban</code><br />
Find the do_start option.<br />
<code><br />
do_start()<br />
{<br />
        # Return<br />
        #       0 if daemon has been started<br />
        #       1 if daemon was already running<br />
        #       2 if daemon could not be started<br />
        do_status &#038;&#038; return 1</p>
<p>        if [ -e "$SOCKFILE" ]; then<br />
                log_failure_msg "Socket file $SOCKFILE is present"<br />
                [ "$1" = "force-start" ] \<br />
                        &#038;&#038; log_success_msg "Starting anyway as requested" \<br />
                        || return 2<br />
                DAEMON_ARGS="$DAEMON_ARGS -x"<br />
        fi</p>
<p>        start-stop-daemon --start --quiet --chuid root --exec $DAEMON -- \<br />
                $DAEMON_ARGS start > /dev/null\<br />
                || return 2</p>
<p>        return 0<br />
}<br />
</code><br />
Add the following after the if statement.<br />
<code></p>
<p>        # Assure that /var/run/fail2ban exists<br />
        [ -d /var/run/fail2ban ] || mkdir -p /var/run/fail2ban</p>
<p></code><br />
Finally, it should look like this<br />
<code><br />
do_start()<br />
{<br />
        # Return<br />
        #       0 if daemon has been started<br />
        #       1 if daemon was already running<br />
        #       2 if daemon could not be started<br />
        do_status &#038;&#038; return 1</p>
<p>        if [ -e "$SOCKFILE" ]; then<br />
                log_failure_msg "Socket file $SOCKFILE is present"<br />
                [ "$1" = "force-start" ] \<br />
                        &#038;&#038; log_success_msg "Starting anyway as requested" \<br />
                        || return 2<br />
                DAEMON_ARGS="$DAEMON_ARGS -x"<br />
        fi</p>
<p>        # Assure that /var/run/fail2ban exists<br />
        [ -d /var/run/fail2ban ] || mkdir -p /var/run/fail2ban</p>
<p>        start-stop-daemon --start --quiet --chuid root --exec $DAEMON -- \<br />
                $DAEMON_ARGS start > /dev/null\<br />
                || return 2</p>
<p>        return 0<br />
}<br />
</code><br />
Now restart and it should work.<br />
<code><br />
sudo /etc/init.d/fail2ban restart<br />
</code><br />
Just for kicks, see how /var/run has the newly created fail2ban directory.<br />
<code><br />
sudo ls /var/run<br />
</code></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/&amp;title=Fail2ban+does+not+start+after+reboot" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/&amp;title=Fail2ban+does+not+start+after+reboot" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/&amp;t=Fail2ban+does+not+start+after+reboot" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/&amp;title=Fail2ban+does+not+start+after+reboot&amp;summary=This%20problem%20was%20identified%20with%20the%20following%20configuration%3A%0D%0AUbuntu%208.04%0D%0Afail2ban%0D%0A%0D%0AProblem%3A%20After%20fail2ban%20install%2C%20everything%20works%20fine%2C%20but%20after%20reboot%20fail2ban%20does%20not%20start.%20Manual%20%2Fetc%2Finit.d%2Ffail2ban%20restart%20fails%20also.%0D%0A%0D%0ACause%3A%20Fail2ban%20looks%20for%20fail2ban.sock%20in%0D%0A%2Fvar%2Frun%2Ffail2ban%2F%0D&amp;source=Tech Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fail2ban+does+not+start+after+reboot+-+http://b2l.me/abz7ad&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2010/04/21/fail2ban-does-not-start-after-reboot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing Mysql data directory require change to AppArmor</title>
		<link>http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/</link>
		<comments>http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 18:44:43 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/</guid>
		<description><![CDATA[After a bit of googling and hair-pulling, I realized that if I just changed the datadir directive in my.cnf will cause mysql start to fail on Ubuntu. The other thing is to add permissions to apparmor for mysql to access the new data directories. Steps 1. sudo vi /etc/apparmor.d/usr.sbin.mysqld 2. Add /newdir/ r, /newdir/** rwk, [...]]]></description>
			<content:encoded><![CDATA[<p>After a bit of googling and hair-pulling, I realized that if I just changed the datadir directive in my.cnf will cause mysql start to fail on Ubuntu. The other thing is to add permissions to apparmor for mysql to access the new data directories.</p>
<p>Steps<br />
1. sudo vi /etc/apparmor.d/usr.sbin.mysqld<br />
2. Add<br />
/newdir/ r,<br />
/newdir/** rwk,<br />
3. sudo /etc/init.d/apparmor restart<br />
4. sudo /etc/init.d/mysql restart</p>
<p>If that still does not work, check the nix permissions to be sure mysql is owner and group for the new directory recursively.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/&amp;title=Changing+Mysql+data+directory+require+change+to+AppArmor" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/&amp;title=Changing+Mysql+data+directory+require+change+to+AppArmor" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/&amp;t=Changing+Mysql+data+directory+require+change+to+AppArmor" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/&amp;title=Changing+Mysql+data+directory+require+change+to+AppArmor&amp;summary=After%20a%20bit%20of%20googling%20and%20hair-pulling%2C%20I%20realized%20that%20if%20I%20just%20changed%20the%20datadir%20directive%20in%20my.cnf%20will%20cause%20mysql%20start%20to%20fail%20on%20Ubuntu.%20The%20other%20thing%20is%20to%20add%20permissions%20to%20apparmor%20for%20mysql%20to%20access%20the%20new%20data%20directories.%0D%0A%0D%0ASteps%0D%0A1.%20sudo%20vi%20%2Fetc%2Fapparmor.d%2Fusr.sbin.mysqld%0D%0A&amp;source=Tech Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Changing+Mysql+data+directory+require+change+to+AppArmor+-+http://b2l.me/abz6Qn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2010/04/15/changing-mysql-data-directory-require-change-to-apparmor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Server must be reconfigured when there is a kernel upgrade</title>
		<link>http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/</link>
		<comments>http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 16:42:09 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[VM]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=107</guid>
		<description><![CDATA[If the linux kernel is upgraded, vmware will not load http://localhost:8222.  It requires a reconfigure when this happens.  Do the following. sudo /usr/bin/vmware-config.pl Subscribe to the comments for this post? Share this on del.icio.us Digg this! Share this on Facebook Post on Google Buzz Share this on LinkedIn Share this on Technorati Tweet This!]]></description>
			<content:encoded><![CDATA[<p>If the linux kernel is upgraded, vmware will not load http://localhost:8222.  It requires a reconfigure when this happens.  Do the following.</p>
<p>sudo /usr/bin/vmware-config.pl</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/&amp;title=VMware+Server+must+be+reconfigured+when+there+is+a+kernel+upgrade" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/&amp;title=VMware+Server+must+be+reconfigured+when+there+is+a+kernel+upgrade" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/&amp;t=VMware+Server+must+be+reconfigured+when+there+is+a+kernel+upgrade" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/&amp;title=VMware+Server+must+be+reconfigured+when+there+is+a+kernel+upgrade&amp;summary=If%20the%20linux%20kernel%20is%20upgraded%2C%20vmware%20will%20not%20load%20http%3A%2F%2Flocalhost%3A8222.%C2%A0%20It%20requires%20a%20reconfigure%20when%20this%20happens.%C2%A0%20Do%20the%20following.%0D%0A%0D%0Asudo%20%2Fusr%2Fbin%2Fvmware-config.pl&amp;source=Tech Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=VMware+Server+must+be+reconfigured+when+there+is+a+kernel+upgrade+-+http://b2l.me/abz7ng&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/08/18/vmware-server-must-be-reconfigured-kernel-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Forget your mysql root password?</title>
		<link>http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/</link>
		<comments>http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 05:33:59 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=105</guid>
		<description><![CDATA[This following line saved my butt when something happened and my root password was no longer working. sudo dpkg-reconfigure mysql-server-5.0 It will allow you to reset your root password without messing with the data or any other configuration in my.cnf. Subscribe to the comments for this post? Share this on del.icio.us Digg this! Share this [...]]]></description>
			<content:encoded><![CDATA[<p>This following line saved my butt when something happened and my root password was no longer working.</p>
<blockquote><p>sudo dpkg-reconfigure mysql-server-5.0</p></blockquote>
<p>It will allow you to reset your root password without messing with the data or any other configuration in my.cnf.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/&amp;title=Forget+your+mysql+root+password%3F" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/&amp;title=Forget+your+mysql+root+password%3F" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/&amp;t=Forget+your+mysql+root+password%3F" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/&amp;title=Forget+your+mysql+root+password%3F&amp;summary=This%20following%20line%20saved%20my%20butt%20when%20something%20happened%20and%20my%20root%20password%20was%20no%20longer%20working.%0D%0Asudo%20dpkg-reconfigure%20mysql-server-5.0%0D%0AIt%20will%20allow%20you%20to%20reset%20your%20root%20password%20without%20messing%20with%20the%20data%20or%20any%20other%20configuration%20in%20my.cnf.&amp;source=Tech Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Forget+your+mysql+root+password%3F+-+http://b2l.me/abz7nh&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/07/06/forget-your-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu apache2 virtualhost setup problems</title>
		<link>http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/</link>
		<comments>http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/#comments</comments>
		<pubDate>Tue, 05 May 2009 05:44:35 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/?p=96</guid>
		<description><![CDATA[If you are getting error messages when starting apache2 like &#8220;Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName&#8221; or &#8220;[warn] _default_ VirtualHost overlap on port 80, the first has precedence&#8221; you need to make sure a couple of lines are in your /etc/apache2/httpd.confÂ  file. ServerName localhost NameVirtualHost *:80 Subscribe [...]]]></description>
			<content:encoded><![CDATA[<p>If you are getting error messages when starting apache2 like</p>
<p>&#8220;Could not reliably determine the server&#8217;s fully qualified domain name, using 127.0.1.1 for ServerName&#8221;<br />
or<br />
&#8220;[warn] _default_ VirtualHost overlap on port 80, the first has precedence&#8221;</p>
<p>you need to make sure a couple of lines are in your /etc/apache2/httpd.confÂ  file.</p>
<p>ServerName localhost<br />
NameVirtualHost *:80</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/&amp;title=Ubuntu+apache2+virtualhost+setup+problems" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/&amp;title=Ubuntu+apache2+virtualhost+setup+problems" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/&amp;t=Ubuntu+apache2+virtualhost+setup+problems" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/&amp;title=Ubuntu+apache2+virtualhost+setup+problems&amp;summary=If%20you%20are%20getting%20error%20messages%20when%20starting%20apache2%20like%0D%0A%0D%0A%22Could%20not%20reliably%20determine%20the%20server%27s%20fully%20qualified%20domain%20name%2C%20using%20127.0.1.1%20for%20ServerName%22%0D%0Aor%0D%0A%22%5Bwarn%5D%20_default_%20VirtualHost%20overlap%20on%20port%2080%2C%20the%20first%20has%20precedence%22%0D%0A%0D%0Ayou%20need%20to%20make%20sure%20a%20couple%20of%20lines%20are%20in%20y&amp;source=Tech Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Ubuntu+apache2+virtualhost+setup+problems+-+http://b2l.me/acphbq&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2009/05/04/ubuntu-apache2-virtualhost-setup-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql on Windows vs Linux</title>
		<link>http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/</link>
		<comments>http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/#comments</comments>
		<pubDate>Fri, 02 May 2008 04:12:56 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[linux server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows 2003]]></category>
		<category><![CDATA[windows server]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/</guid>
		<description><![CDATA[I was working on optimizing a Mysql database today and accidentally stumbled upon a benchmarking exercise. The original Mysql database is hosted on a Windows Server 2003. I develop on a Mysql database server running on Ubuntu Linux. The Linux server ran the same query twice as fast as the Windows server without using caching [...]]]></description>
			<content:encoded><![CDATA[<p>I was working on optimizing a Mysql database today and accidentally stumbled upon a benchmarking exercise.  The original Mysql database is hosted on a Windows Server 2003.  I develop on a Mysql database server running on Ubuntu Linux.  The Linux server ran the same query twice as fast as the Windows server without using caching or anything.  I know that Linux does I/O caching on its own as well so I even tried running the query after a fresh reboot to rule out that factor.  Then I got help from a colleague and started tweaking with the my.cnf/my.ini to make sure they were the same and each time, the results came back about the same.  Mysql on Windows was consistently slower than Mysql on Linux.</p>
<p>Then we decided to load the database onto other servers for more data points on this Mysql performance test. We ran the same query returning 429 rows of data with 13 table joins and a couple of sub-queries.  All queries were run on the command line client on the servers themselves to avoid network lag.Â  All servers are running Mysql 5.0.x.</p>
<p><strong>Results</strong></p>
<p>1. Ubuntu Linux:                    0.70 seconds<br />
2. CentOS:                               0.78 seconds<br />
3. Windows 2003 Server:     1.40 seconds<br />
4. Windows 2003 Server:     1.42 seconds</p>
<p><strong>Server hardware</strong></p>
<p>1. Ubuntu Linux<br />
AMD ATHLON 64 X2 4200+<br />
2GB DDR400<br />
200GB 7200RPM SATA/150</p>
<p>2. CentOS<br />
Dual Opteron 240<br />
2GB DDR ECC<br />
120GB 7200RPM SATA/300</p>
<p>3. Windows 2003 Server<br />
Dual Xeon<br />
2GB DDR ECC<br />
7200RPM PATA</p>
<p>4. Windows 2003 Server<br />
2 Dual Xeon (4 CPUs)<br />
8GB DDR ECC<br />
3 73GB 10,000RPM SCSI in RAID 5</p>
<p><strong><a href="http://informationideas.com/news/2008/05/09/mysql-on-32bit-processor-vs-64bit-processor/">A followup to the benchmark that clarifies the cause of the differences</a></strong></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/&amp;title=Mysql+on+Windows+vs+Linux" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/&amp;title=Mysql+on+Windows+vs+Linux" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/&amp;t=Mysql+on+Windows+vs+Linux" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/&amp;title=Mysql+on+Windows+vs+Linux&amp;summary=I%20was%20working%20on%20optimizing%20a%20Mysql%20database%20today%20and%20accidentally%20stumbled%20upon%20a%20benchmarking%20exercise.%20%20The%20original%20Mysql%20database%20is%20hosted%20on%20a%20Windows%20Server%202003.%20%20I%20develop%20on%20a%20Mysql%20database%20server%20running%20on%20Ubuntu%20Linux.%20%20The%20Linux%20server%20ran%20the%20same%20query%20twice%20as%20fast%20as%20the%20Windows&amp;source=Tech Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Mysql+on+Windows+vs+Linux+-+http://b2l.me/ab3amz&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2008/05/01/mysql-on-windows-vs-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>In House Hosting vs ISP</title>
		<link>http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/</link>
		<comments>http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/#comments</comments>
		<pubDate>Wed, 15 Aug 2007 21:24:17 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/</guid>
		<description><![CDATA[Clients are always trying to determine if they should host their own site in house or using an ISP. While in the past I would definitely suggest using an ISP, it is not so cut and dry as the cost of servers and bandwidth have decreased dramatically. These days, I can build a server that [...]]]></description>
			<content:encoded><![CDATA[<p>Clients are always trying to determine if they should host their own site in house or using an ISP.  While in the past I would definitely suggest using an ISP, it is not so cut and dry as the cost of servers and bandwidth have decreased dramatically.  These days, I can build a server that is super fast for around $1,000.  Getting a DSL line with static IP addresses cost around $75 per month.  It allows for ease of system upgrade and for more advanced integration into business systems through programming.  While there is the down side of power backup issues and hardware failures to contend with, it is still a viable option if the website is not a mission critical application.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/&amp;title=In+House+Hosting+vs+ISP" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/&amp;title=In+House+Hosting+vs+ISP" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/&amp;t=In+House+Hosting+vs+ISP" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/&amp;title=In+House+Hosting+vs+ISP&amp;summary=Clients%20are%20always%20trying%20to%20determine%20if%20they%20should%20host%20their%20own%20site%20in%20house%20or%20using%20an%20ISP.%20%20While%20in%20the%20past%20I%20would%20definitely%20suggest%20using%20an%20ISP%2C%20it%20is%20not%20so%20cut%20and%20dry%20as%20the%20cost%20of%20servers%20and%20bandwidth%20have%20decreased%20dramatically.%20%20These%20days%2C%20I%20can%20build%20a%20server%20that%20is%20super%20f&amp;source=Tech Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=In+House+Hosting+vs+ISP+-+http://b2l.me/ab3xwk&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2007/08/15/in-house-hosting-vs-isp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed Matters</title>
		<link>http://informationideas.com/news/2007/05/15/speed-matters/</link>
		<comments>http://informationideas.com/news/2007/05/15/speed-matters/#comments</comments>
		<pubDate>Wed, 16 May 2007 02:56:11 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[website speed]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/2007/05/15/speed-matters/</guid>
		<description><![CDATA[It has been said many times by many people, but I have to reiterate again how important it is to have a website that loads quickly.Â  Researches have shown that visitors to a page has the patience to wait only four seconds before hitting the Back or Esc button and off they go.Â  However, I [...]]]></description>
			<content:encoded><![CDATA[<p>It has been said many times by many people, but I have to reiterate again how important it is to have a website that loads quickly.Â  Researches have shown that visitors to a page has the patience to wait only four seconds before hitting the Back or Esc button and off they go.Â  However, I have encountered so many content rich sights that take well over that before the page is loaded with content I am interested in.Â  Some sites just do not have anything showing before the page is up, others will have random images appearing and pushed into place as more are loaded, but the content is no where to be seen.</p>
<p>So what can you speed up the load time for your site.Â  For one thing, if you are using more advanced technology than static HTML files, which most site are in this category these days, you need to make sure the server hosting the site is fast enough.Â  A lot of sites are running on the cheapest shared web hosting services and as we all know, the cheapest is not always the best.Â  These services do give you a lot on paper, but with their bogged down servers you will never be able to utilize half the resources they allow for your account.</p>
<p>Now, if your hosting service or your own server is plenty fast with enough bandwidth, then it is time to look closer at the details.Â  Like I mentioned before, if you are running a static HTML site, these tips will not help you.Â  But you do have many other problems of how on earth will you update your content or design across the entire website.Â  That is another post.Â  But for the majority of us using databases to generate dynamic content, the database is a big culprit in site latency.Â  Databases need to be optimized for the hardware and the application it is running.Â  Optimizing a database starts from the design of the schema to the implementation of regular maintenance processes.Â  Again, there can be books written on how to optimize a database and maybe I will write one someday.</p>
<p>Anyhow, if you are running a site that is slow, don&#8217;t just ignore it.Â  Spend some time to figure out why it is slow and solve the issue.Â  It would be a shame to lose all those potential visitors to slow load time.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://informationideas.com/news/2007/05/15/speed-matters/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://informationideas.com/news/2007/05/15/speed-matters/&amp;title=Speed+Matters" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://informationideas.com/news/2007/05/15/speed-matters/&amp;title=Speed+Matters" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://informationideas.com/news/2007/05/15/speed-matters/&amp;t=Speed+Matters" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://informationideas.com/news/2007/05/15/speed-matters/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://informationideas.com/news/2007/05/15/speed-matters/&amp;title=Speed+Matters&amp;summary=It%20has%20been%20said%20many%20times%20by%20many%20people%2C%20but%20I%20have%20to%20reiterate%20again%20how%20important%20it%20is%20to%20have%20a%20website%20that%20loads%20quickly.%C3%82%C2%A0%20Researches%20have%20shown%20that%20visitors%20to%20a%20page%20has%20the%20patience%20to%20wait%20only%20four%20seconds%20before%20hitting%20the%20Back%20or%20Esc%20button%20and%20off%20they%20go.%C3%82%C2%A0%20However%2C%20I%20have%20&amp;source=Tech Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://informationideas.com/news/2007/05/15/speed-matters/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Speed+Matters+-+http://b2l.me/ab2yap&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2007/05/15/speed-matters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache SSL IfDefine &#8211; Error</title>
		<link>http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/</link>
		<comments>http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/#comments</comments>
		<pubDate>Thu, 18 Jan 2007 23:23:28 +0000</pubDate>
		<dc:creator>frank</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/</guid>
		<description><![CDATA[Just encountered a problem that was painful to deal with while configuring SSL on apache for linux.Â  The httpd.conf had a tag, , before all the SSL configuration lines.Â  In order for any commands within and to be loaded on service start, you must use the -D attribute like this. $ service httpd -D SSL [...]]]></description>
			<content:encoded><![CDATA[<p>Just encountered a problem that was painful to deal with while configuring SSL on apache for linux.Â  The httpd.conf had a tag, <ifdefine SSL>, before all the SSL configuration lines.Â  In order for any commands within </ifdefine><ifdefine SSL> and </ifdefine> to be loaded on service start, you must use the -D attribute like this.</p>
<p>$ service httpd -D SSL -k start</p>
<p>Also, I found that restart does not always take new changes to my conf files.</p>
<p>$ service httpd -D SSL -k restart</p>
<p>Instead, use the stop then the start command to be sure.</p>
<p>$service httpd -D SSL -k stop<br />
$service httpd -D SSL -k start</p>
<p>That was a source of much pain while working on this particular server.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/&amp;title=Apache+SSL+IfDefine+-+Error" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/&amp;title=Apache+SSL+IfDefine+-+Error" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/&amp;t=Apache+SSL+IfDefine+-+Error" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/&amp;title=Apache+SSL+IfDefine+-+Error&amp;summary=Just%20encountered%20a%20problem%20that%20was%20painful%20to%20deal%20with%20while%20configuring%20SSL%20on%20apache%20for%20linux.%C3%82%C2%A0%20The%20httpd.conf%20had%20a%20tag%2C%20%2C%20before%20all%20the%20SSL%20configuration%20lines.%C3%82%C2%A0%20In%20order%20for%20any%20commands%20within%20%20and%20%20to%20be%20loaded%20on%20service%20start%2C%20you%20must%20use%20the%20-D%20attribute%20like%20this.%0D%0A%0D%0A%24%20service%20&amp;source=Tech Blog" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Apache+SSL+IfDefine+-+Error+-+http://b2l.me/acxxq6&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://informationideas.com/news/2007/01/18/apache-ssl-ifdefine-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
