<?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>Everything is Crap &#187; mysql</title>
	<atom:link href="http://everythingiscrap.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://everythingiscrap.com</link>
	<description>Notes on the crap we&#039;ve been subjected to</description>
	<lastBuildDate>Wed, 02 May 2012 15:33:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Ubuntu to Ubuntu &#8211; Replacing a web server</title>
		<link>http://everythingiscrap.com/moving-to-a-new-web-server/</link>
		<comments>http://everythingiscrap.com/moving-to-a-new-web-server/#comments</comments>
		<pubDate>Thu, 30 Dec 2010 21:02:09 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.everythingiscrap.com/?p=704</guid>
		<description><![CDATA[So, the old web server is acting slow and I don't know why. Solution? Move to a new webserver, and upgrade to the latest OS along the way. It needs to be upgraded anyway, right?! That's what I just did and here are the most valuable command line arguments for doing so: Of course, those [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.everythingiscrap.com/wp-content/uploads/2010/06/DSC00379-320-12-300x225.jpg" alt="" title="DSC00379-320-12" width="300" height="225" class="alignnone size-medium wp-image-499" /><br />
So, the old web server is acting slow and I don't know why. Solution? Move to a new webserver, and upgrade to the latest OS along the way. It needs to be upgraded anyway, right?!</p>
<p>That's what I just did and here are the most valuable command line arguments for doing so:</p>
<p><code>tar -pcvzf www.tar.gz www/
mysqldump -u root -pPassword --all-databases &gt; alldata.sql

tar -pxvzf www.tar.gz
mysql -u root -pPassword &lt; alldata.sql<!--formatted--></code></p>
<p>Of course, those commands are not all that I needed to do, but they are the ones that I will want in the future when I move to another web server. So, I guess you could say they're more like a personal note on how to transfer a directory without losing permissions and how to move an entire MySQL install.</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/moving-to-a-new-web-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automated IIS WordPress Installer from Microsoft</title>
		<link>http://everythingiscrap.com/automated-iis-wordpress-installer-from-microsoft/</link>
		<comments>http://everythingiscrap.com/automated-iis-wordpress-installer-from-microsoft/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 15:51:44 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com/?p=477</guid>
		<description><![CDATA[Now that I know how to do it, I'm getting fed up with LAMP as a web platform. I much prefer Windows. (What can I say? I'm a Windows guy!) And I recently stumbled into the Microsoft Web Platform Installer. It makes installing WordPress embarrassingly simple. Just run the installer and it does everything for [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://everythingiscrap.com/wp-content/uploads/2010/06/web.png" alt="" title="web" width="256" height="256" class="alignnone size-full wp-image-478" /></p>
<p>Now that I know how to do it, I'm getting fed up with LAMP as a web platform. I much prefer Windows. (What can I say? I'm a Windows guy!) And I recently stumbled into the <a href="http://www.microsoft.com/web/downloads/platform.aspx">Microsoft Web Platform Installer</a>. It makes installing WordPress embarrassingly simple. Just run the installer and it does <em>everything</em> for you. For instance: I made a website in IIS, then ran the installer and it&#8230;</p>
<ul>
<li>installed PHP,</li>
<li>installed MySQL,</li>
<li>installed WordPress,</li>
<li>and installed a couple other bits and pieces for IIS.</li>
</ul>
<p>From what I understand, it would have installed IIS if it wasn't already installed. And that's not all it installs either: Joomla, Umbraco, phpBB, DotNetNuke, MS SQL Express, and a lot of others. It's great and, more importantly, it <em>works.</em> With the Web Platform Installer I've gone from barely being able to get WordPress to work on Windows/IIS to stupidly simple installs that take about 5 minutes. Literally! It's great!</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/automated-iis-wordpress-installer-from-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving a MySQL database</title>
		<link>http://everythingiscrap.com/moving-a-mysql-database/</link>
		<comments>http://everythingiscrap.com/moving-a-mysql-database/#comments</comments>
		<pubDate>Mon, 23 Apr 2007 18:29:00 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://piotrouble.wordpress.com/2007/04/23/moving-a-mysql-database</guid>
		<description><![CDATA[You just need a couple commands&#8230; then&#8230; This explains how to do it&#8230; http://www.clockwatchers.com/mysql_dump.html Enjoy]]></description>
			<content:encoded><![CDATA[<p>You just need a couple commands&#8230;</p>
<p><code># mysqldump -u username -ppassword database_name &gt; FILE.sql<!--formatted--></code></p>
<p>then&#8230;</p>
<p><code># mysql -u username -ppassword database_name &lt; FILE.sql<!--formatted--></code></p>
<p>This explains how to do it&#8230;
<div></div>
<div><a href="http://www.clockwatchers.com/mysql_dump.html">http://www.clockwatchers.com/mysql_dump.html</a></div>
<div></div>
<div>Enjoy</div>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/moving-a-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL on Linux</title>
		<link>http://everythingiscrap.com/mysql-on-linux/</link>
		<comments>http://everythingiscrap.com/mysql-on-linux/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 18:24:00 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://piotrouble.wordpress.com/2007/04/04/mysql-on-linux</guid>
		<description><![CDATA[MySQL is foreign to me, and this is really basic stuff, but here it is: I figured out how to access mysql on linux&#8230; mysql -h localhost -u username -p &#8230; it then prompts for the password. From there you "use collection_name;" to choose the collection_name databases, "show databases;" will&#8230;well&#8230;duh! "show tables;"]]></description>
			<content:encoded><![CDATA[<div>MySQL is foreign to me, and this is really basic stuff, but here it is:</div>
<div></div>
<div>I figured out how to access mysql on linux&#8230;</div>
<div></div>
<div>mysql -h localhost -u username -p</div>
<div></div>
<div>&#8230; it then prompts for the password. From there you "use collection_name;" to choose the collection_name databases,</div>
<div>"show databases;" will&#8230;well&#8230;duh!</div>
<div>"show tables;"</div>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/mysql-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

