<?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>Hostmedic &#187; Technology</title>
	<atom:link href="http://www.hostmedic.com/tag/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hostmedic.com</link>
	<description>Emergency Medicine for Hosting &#38; Server Admins</description>
	<lastBuildDate>Sat, 24 Sep 2011 04:51:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Master &#8211; Slave Replication</title>
		<link>http://www.hostmedic.com/admin/systems-administration/database_administration/master-slave-replication/</link>
		<comments>http://www.hostmedic.com/admin/systems-administration/database_administration/master-slave-replication/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 01:51:20 +0000</pubDate>
		<dc:creator>Glenn Kelley</dc:creator>
				<category><![CDATA[DBA]]></category>
		<category><![CDATA[citrt]]></category>
		<category><![CDATA[debugging mysql]]></category>
		<category><![CDATA[master]]></category>
		<category><![CDATA[master-slave]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[slave]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[typo3 tuning]]></category>
		<category><![CDATA[Web 2.0 minus or plus]]></category>

		<guid isPermaLink="false">http://churchmedic.com/?p=379</guid>
		<description><![CDATA[There are many reasons to use master-slave replication including but not limited to: 1) Offload some of the queries from one server to another thus helping spread the load: One of the biggest advantages to have master-slave set up in MySQL is to be able to use master for all of the inserts and send [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Fsystems-administration%2Fdatabase_administration%2Fmaster-slave-replication%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Fsystems-administration%2Fdatabase_administration%2Fmaster-slave-replication%2F&amp;source=churchmedic&amp;style=normal&amp;service=TinyURL.com&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>There are many reasons to use master-slave replication including but not limited to:</p>
<p>1) Offload some of the queries from one server to another thus helping spread the load: One of the biggest advantages to have master-slave set up in MySQL is to be able to use master for all of the inserts and send some, if not all, select queries to a slave (or even a series of slaves). This will most probably speed up your application without having to diving into optimizing all the queries or buying more hardware-  This is especially handy if your using some off the shelf application such as <a href="http://www.webempoweredchurch.com">WebEmpoweredChurch.com</a> / <a href="http://www.typo3usa.com">Typo3</a>,  Magento , WordPress, Drupal, etc . . .</p>
<p>2) Backups can hurt a DB server @ times.   Here @ Typo3USA &#8211; We always Do backups from slave.  Most techs simply just overlook this simple but highly effective advantage.   We have some databases that are quite large &#8211; super large and others that are just a few megs &#8211; to a few gigs.   Sadly &#8211; when the size of a database becomes a big deal is when it has grown to multiple gigs and mysqldump causes the site to lag when it locks tables.  For some sites, this could mean that site goes down for few secs to minutes. If you have slave, you just take slave out of rotation (we have built this into our backup scripts now) and run backups off the slave. You can even stop slave MySQL instance and copy the /etc/mysql/mysql or /var/lib/mysql  (or whatever your database directory ) folder instead of doing mysqldump&#8230;</p>
<p>Recently &#8211; we moved forward into using the <a href="http://www.r1soft.com" target="_blank">R1Soft.com Backup System</a> (in fact we also had a good hand with the Vine Staff and Ron Hall in building up their new website &#8211; check it out @ www.R1soft.com ) WE ABSOLUTELY LOVE THIS SYSTEM BECAUSE IT IS SO FAST IN ITS BACKUPS FOR MYSQL</p>
<p>Ok let us dive into how to setup master-slave replication under MySQL. There are many configuration changes you can do to optimize your MySQL set up. I will just touch on very basic ones to get the replication to work. Here are some assumptions:</p>
<blockquote><p>Master server ip:  10.100.1.1<br />
Slave server ip:  10.100.1.2<br />
Slave username:  slavemysqluser<br />
Slave pw:  slavepw<br />
Your data directory is:  /usr/local/mysql/var/</p></blockquote>
<p>Put the following in your master my.cnf file under [mysqld] section:</p>
<p style="padding-left: 30px;"><code># changes made to do master<br />
server-id           = 1<br />
relay-log           = /usr/local/mysql/var/mysql-relay-bin<br />
relay-log-index     = /usr/local/mysql/var/mysql-relay-bin.index<br />
log-error           = /usr/local/mysql/var/mysql.err<br />
master-info-file    = /usr/local/mysql/var/mysql-master.info<br />
relay-log-info-file = /usr/local/mysql/var/mysql-relay-log.info<br />
datadir             = /usr/local/mysql/var<br />
log-bin             = /usr/local/mysql/var/mysql-bin<br />
# end master</code></p>
<p>Copy the following to slave’s my.cnf under [mysqld] section:</p>
<p style="padding-left: 30px;"><code># changes made to do slave<br />
server-id           = 2<br />
relay-log           = /usr/local/mysql/var/mysql-relay-bin<br />
relay-log-index     = /usr/local/mysql/var/mysql-relay-bin.index<br />
log-error           = /usr/local/mysql/var/mysql.err<br />
master-info-file    = /usr/local/mysql/var/mysql-master.info<br />
relay-log-info-file = /usr/local/mysql/var/mysql-relay-log.info<br />
datadir             = /usr/local/mysql/var<br />
# end slave setup</code></p>
<p style="padding-left: 30px;">Create user on master:<br />
<code>mysql&gt; grant replication slave on *.* to slavemysqluser@'10.100.1.2' identified by 'slavepw';</code></p>
<p style="padding-left: 30px;">Do a dump of data to move to slave<br />
<code>mysqldump -u root --all-databases --single-transaction --master-data=1 &gt; masterdump.sql</code></p>
<p style="padding-left: 30px;">import dump on slave<br />
<code>mysql &lt; masterdump.sql</code></p>
<p style="padding-left: 30px;">After dump is imported go in to mysql client by typing mysql. Let us tell the slave which master to connect to and what login/password to use:<br />
<code>mysql&gt; CHANGE MASTER TO MASTER_HOST='10.100.1.1',  MASTER_USER='slaveuser', MASTER_PASSWORD='slavepw';</code></p>
<p style="padding-left: 30px;">Let us start the slave:<br />
<code>mysql&gt; start slave;</code></p>
<p style="padding-left: 30px;">You can check the status of the slave by typing<br />
<code>mysql&gt; show slave status\G</code></p>
<p>The last command will let you know how up to date the slave is from the master in seconds.  I have had many folks worry about this being behind the master &#8211; it is okay if it does not say ZERO right away &#8211; if you check it you should see the number going down over time until it finally catchs up with the master.</p>
<p>NOTE* if it shows NULL, &#8211; it could be that the slave has not started or that it has an error:  (if this is the case it should show up in Last_errno; and Last_error under the: show slave status\G )</p>
<p>We suggest a number of different tools as well for MySQL including:</p>
<p><strong>Maatkit</strong><br />
<a href="http://www.maatkit.org/">Maatkit</a> is a great set of tools for MySQL Performance Analyses and maintainence.  Must know and have for any MySQL User.</p>
<p><strong>mysqladmin </strong><br />
<em>mysqladmin extended -i100 -r</em> is very nice way to look how MySQL performance counters increment and it can tell you a lot about server run status.</p>
<p><strong>mysqlreport</strong><br />
<a href="http://hackmysql.com/mysqlreport">MySQL Report</a> is a tool which would look at status variables same as <em>mysqladmin extended</em> but will group them together nicely and provide some hints on what are good and bad values.</p>
<p><strong>mysqlsla</strong><br />
This is nice tool to analyze slow query log. It reads bunch of different log formats and has various stats, and it was there before <em>mk-log-parser </em> appeared.</p>
<p><strong>innotop </strong><br />
<a href="http://sourceforge.net/projects/innotop">Innotop</a> is great top like tool for MySQL and is helpful even if you do not use Innodb tables. Very nice to watch what happens to server in the real time.</p>
<p><strong>oprofile</strong><br />
<a href="http://oprofile.sourceforge.net/about/">oprofile</a> is usually used for advanced MySQL tuning when the load is CPU bound – it will tell you where exactly inside MySQL or Kernel CPU time is spent.</p>
<p><strong>iohist</strong><br />
<a href="http://jcole.us/software/iohist/iohist.pl">iohist</a> is a little tool to show histogram for IO response time. The main use for it is to see how response time is split for read and write request rather than seeing the average reported by iostat. These can be very different.</p>
<p><strong>sysbench</strong><br />
<a href="http://sysbench.sf.net/">sysbench</a> is a tool to check performance of system and MySQL. Helpful to check different hardware and OS characteristic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hostmedic.com/admin/systems-administration/database_administration/master-slave-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LoJacking your laptop for free</title>
		<link>http://www.hostmedic.com/admin/uncategorized/lojacking-your-laptop-for-free/</link>
		<comments>http://www.hostmedic.com/admin/uncategorized/lojacking-your-laptop-for-free/#comments</comments>
		<pubDate>Sat, 30 Aug 2008 04:09:53 +0000</pubDate>
		<dc:creator>Glenn Kelley</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[citrt]]></category>
		<category><![CDATA[laptop demise]]></category>
		<category><![CDATA[lojack]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[stolen hardware]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://churchmedic.com/?p=321</guid>
		<description><![CDATA[LoJack your laptop for free Mac OS X version also has an option to capture pictures of the laptop user or thief]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Funcategorized%2Flojacking-your-laptop-for-free%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Funcategorized%2Flojacking-your-laptop-for-free%2F&amp;source=churchmedic&amp;style=normal&amp;service=TinyURL.com&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignleft size-full wp-image-322" title="laptop" src="http://www.hostmedic.com/wp-content/uploads/2008/08/laptop.jpg" alt="" width="215" height="149" />Recently, a friend of mine had an interesting experience &#8211; (he blogged about it &#8211; so guess I can share).</p>
<p>as <a href="http://allbutlove.wordpress.com/" target="_blank">Chuck Russel</a>, <a href="http://churchcio.com/" target="_blank">Jason Reynolds</a>, <a href="http://davidhelbig.com/" target="_blank">David Helbig</a>, and <a title="Sad Tale of a Laptops Demise" href="http://clifguy.com/2008/07/31/the-sad-tale-of-my-laptops-demise/" target="_blank">Clif Guy</a> discussed Internet Campus while enjoying a beautiful night on the beach just a couple hundred feet away in the beach parking lot, Jason’s car window was smashed and Clif&#8217;s briefcase/laptop bag was stolen containing his laptop, digital camera, web cam, cables, and all kinds of personal items.</p>
<p>Recently I purchased a Mac Powerbook Pro &#8211; and I absolutely love this machine&#8230;  I think I might need to start attending a 12 step program as I sleep with this thing, take it to church with me (ok so I use it while preaching&#8230;) and it has even made the occasional trip to the bathroom with me&#8230; it would be devastating for me to loose this or have it stolen.</p>
<p>I looked into purchasing the LoJack software until I read a quick tidbit on <a href="http://bitbud.com/rock-solid-it/106-encryptification-required" target="_blank">BitBud&#8217;s blog</a> about encryption for our servers, files, laptops etc&#8230; as well as <a title="LoJacking your Mac PowerBook for free" href="http://adeona.cs.washington.edu/" target="_blank">Adeona &#8211; a free Open Source LoJack software</a>.</p>
<p>Adeona is the first Open Source system for tracking the location of your lost          or stolen laptop that does not rely on a proprietary, central service.  Whats nice is its 3 primary properties:</p>
<ul>
<li> <span class="heading"><strong>Private</strong>:</span> Adeona uses state-of-the-art cryptographic mechanisms to ensure that             the owner is the <em>only</em> party that can use the             system to reveal the locations visited by a device.</li>
<li> <span class="heading"><strong>Reliable</strong>:</span> Adeona uses a community-based remote storage facility, ensuring             retrievability of recent location updates.</li>
<li> <span class="heading"><strong>Open source and free</strong>:</span> Adeona&#8217;s software is licensed under GPLv2. While your locations             are secret, the tracking system&#8217;s design is not.</li>
</ul>
<p>The Mac OS X version also has an option to <em>capture pictures</em> of             the laptop user or thief using the built-in iSight camera and the             freeware tool <a href="http://www.intergalactic.de/pages/iSight.html">isightcapture</a>.</p>
<p>So what are you waiting for?   LoJack your hardware !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hostmedic.com/admin/uncategorized/lojacking-your-laptop-for-free/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Network Naming Conventions&#8230; gone Biblical</title>
		<link>http://www.hostmedic.com/admin/uncategorized/network-naming-conventions-gone-biblical/</link>
		<comments>http://www.hostmedic.com/admin/uncategorized/network-naming-conventions-gone-biblical/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 06:59:31 +0000</pubDate>
		<dc:creator>Glenn Kelley</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[citrt]]></category>
		<category><![CDATA[convention]]></category>
		<category><![CDATA[datacenter]]></category>
		<category><![CDATA[naming]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[topology]]></category>

		<guid isPermaLink="false">http://churchmedic.com/?p=314</guid>
		<description><![CDATA[Recently Ian Beyer, Network Extraordinaire out @ Church of the Resurrection in Leewood KS and I had an interesting conversation about network topology and the naming convention of servers, routers, switches, and workstations. We are in the process of bringing on Phase 2 of the VineHosting Data Center, complete with our new R1Soft Bare Metal [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Funcategorized%2Fnetwork-naming-conventions-gone-biblical%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Funcategorized%2Fnetwork-naming-conventions-gone-biblical%2F&amp;source=churchmedic&amp;style=normal&amp;service=TinyURL.com&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Recently <a href="http://blog.ianbeyer.com">Ian Beyer</a>, Network Extraordinaire out @ <a href="http://www.cor.org">Church of the Resurrection in Leewood KS</a> and I had an interesting conversation about network topology and the naming convention of servers, routers, switches, and workstations.</p>
<div id="attachment_315" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-315" title="survey-salvation-1" src="http://churchmedic.com/wp-content/uploads/2008/08/survey-salvation-1-300x251.gif" alt="Salvation-Topology" width="300" height="251" /><p class="wp-caption-text">Salvation-Topology</p></div>
<p>We are in the process of bringing on Phase 2 of the <a href="http://www.VineHosting.com">VineHosting</a> Data Center, complete with our new <a href="http://www.r1soft.com" target="_blank">R1Soft Bare Metal Restore</a> Servers (another blog post perhaps) and our new Virtual Infrastucture.</p>
<p>Since we now have so many more servers than we did in the past &#8211; and we have exhausted all the cities Paul visited in the Bible, the names of the sacraments, etc&#8230;  I reached out and asked Ian what they were doing -</p>
<p>He got to joking a bit &#8211; saying they used all Dr. Seuss themes @ an old employer (not sure if he meant Sun Microsystems or Sprint&#8230;) anyhow &#8211; pretty funny stuff.   Imagine that &#8211; us having Thing 1 and Thing 2 &#8230;</p>
<p>I sat down and had to write up an assignment for my seminary class on the vocabulary of Salvation&#8230; and suddenly thought &#8230; WOW there it is&#8230;</p>
<p>The Servers Host name is Salvation:  its guest machines are:</p>
<p>conversion, substitution, reconciliation, propitiation, remission, imputation, adoption, justification, sanctification,  glorification and regeneration (thats the PXE Booter&#8230;)</p>
<p>Our R1Soft Servers are called Preservation and Redemption.</p>
<p>Now If I could only turn this in as an assignment instead of the long term paper&#8230; I would be happy as pie.</p>
<p>And of course &#8211; I still have all these other servers to do&#8230;</p>
<p>I guess I could use a few other examples &#8211; imagine getting a welcome email being told your on the purgatory server&#8230;</p>
<p>What are you using for a Naming Convention?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hostmedic.com/admin/uncategorized/network-naming-conventions-gone-biblical/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Internet Church</title>
		<link>http://www.hostmedic.com/admin/uncategorized/internet-church/</link>
		<comments>http://www.hostmedic.com/admin/uncategorized/internet-church/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 05:39:50 +0000</pubDate>
		<dc:creator>Glenn Kelley</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Web 2.0 minus or plus]]></category>

		<guid isPermaLink="false">http://churchmedic.com/pre-26-wordpress/internet-church/</guid>
		<description><![CDATA[Recently, a friend of mine from Church of the Resurrection (Clif Guy) was blogging about the beginnings of the Internet Campus and how COR is looking to do this&#8230; I began looking around @ the web and found the Internet Church (www.Lifechurch.tv) seems to be the ones doing this the best&#8230; I believe many churches [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Funcategorized%2Finternet-church%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Funcategorized%2Finternet-church%2F&amp;source=churchmedic&amp;style=normal&amp;service=TinyURL.com&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Recently, a friend of mine from <a href="http://www.COR.org">Church of the Resurrection</a> (<a href="http://clifguy.com">Clif Guy</a>) was blogging about the beginnings of the Internet Campus and how COR is looking to do this&#8230;<br />
I began looking around @ the web and found the I<a href="http://www.lifechurch.tv">nternet Church (www.Lifechurch.tv)</a> seems to be the ones doing this the best&#8230;</p>
<p>I believe many churches will soon be taking a turn towards the virtual.  Who would have ever thought of virtual church, but it is becoming a reality in the 21st century.  Yes &#8211; it is hard to touch, love, and hug &#8211; but in this day and age with text, voice, video chat and other social networking tools like twitter, facebook, youtube, etc &#8211; fellowship is just a click away&#8230;</p>
<p>Soon &#8211; You can worship from any remote location with just an internet hook-up and the web address of your own church&#8230; (are they ready ?)</p>
<p><object height="344" width="425"><param name="movie" value="http://www.youtube.com/v/1MB4Gwg0k_U&amp;rel=0&amp;color1=11645361&amp;color2=13619151&amp;fs=1"></param><param name="wmode" value="transparent"></param><param name="allowFullScreen" value="true"><embed src="http://www.youtube.com/v/1MB4Gwg0k_U&amp;rel=0&amp;color1=11645361&amp;color2=13619151&amp;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" wmode="transparent" height="344" width="425"></embed></param></object>
<div class="flockcredit" style="text-align: right; color: #CCC; font-size: x-small;">Blogged with the <a href="http://www.flock.com/blogged-with-flock" style="color: #999; font-weight: bold;" target="_new" title="Flock Browser">Flock Browser</a></div>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/InternetChurch" rel="tag">InternetChurch</a>, <a href="http://technorati.com/tag/%20online%20church" rel="tag"> online church</a>, <a href="http://technorati.com/tag/%20Church%202.0%20" rel="tag"> Church 2.0 </a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
			<wfw:commentRss>http://www.hostmedic.com/admin/uncategorized/internet-church/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>P2P / P4P finally being accepted?</title>
		<link>http://www.hostmedic.com/admin/uncategorized/p2p-p4p-finally-being-accepted/</link>
		<comments>http://www.hostmedic.com/admin/uncategorized/p2p-p4p-finally-being-accepted/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 14:52:27 +0000</pubDate>
		<dc:creator>Glenn Kelley</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Chatter]]></category>
		<category><![CDATA[comcast]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[p4p]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://churchmedic.com/?p=306</guid>
		<description><![CDATA[I was chatting the other night with @cyberentomology and he told me that they had stopped some of the p2p and napster stuff cold on their network @ COR.org This got me thinking about how &#8211; so much bandwidth is used sharing files, videos, audio etc&#8230; during the average work day (can anyone say &#8220;Traffic [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Funcategorized%2Fp2p-p4p-finally-being-accepted%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.hostmedic.com%2Fadmin%2Funcategorized%2Fp2p-p4p-finally-being-accepted%2F&amp;source=churchmedic&amp;style=normal&amp;service=TinyURL.com&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>I was chatting the other night with @cyberentomology and he told me that they had stopped some of the p2p and napster stuff cold on their network @ COR.org</p>
<p>This got me thinking about how &#8211; so much bandwidth is used sharing files, videos, audio etc&#8230; during the average work day (can anyone say &#8220;Traffic Shaping&#8221; 3 times fast after having a moca-latte?)</p>
<p><img class="alignleft" title="P2P Loved" src="http://blog.wired.com/business/images/2008/08/21/blockbuster.jpg" alt="" width="220" height="165" />Anyhow -I began to check a few of the church networks I help support on the side and wow &#8211; amazing what do I find &#8211; but tons of P2P stuff going on&#8230;</p>
<p style="text-align: center;">Imagine if the RIAA ever came to your church &#8230;</p>
<p style="text-align: left;">Just in time with my thinking / I find this article about <a href="http://blog.wired.com/business/2008/08/a-p2p-solution.html" target="_blank">Comcast now turning a 180 and declaring love for p2p</a></p>
<p style="text-align: left;">So &#8211; are you guys blocking this from your boarder?  @ your gateway ? or just allowing it to come in?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hostmedic.com/admin/uncategorized/p2p-p4p-finally-being-accepted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

