<?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>Server Side Guy &#187; Linux</title>
	<atom:link href="http://serversideguy.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://serversideguy.com</link>
	<description>Just another Barsness Solutions weblog</description>
	<lastBuildDate>Tue, 31 Jan 2012 14:57:06 +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>How To Duplicate a PGSQL database</title>
		<link>http://serversideguy.com/2009/08/10/how-to-duplicate-a-pgsql-database/</link>
		<comments>http://serversideguy.com/2009/08/10/how-to-duplicate-a-pgsql-database/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 12:41:50 +0000</pubDate>
		<dc:creator>Tim Barsness</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PSQL]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[PostgreSQL]]></category>

		<guid isPermaLink="false">http://serversideguy.com/?p=80</guid>
		<description><![CDATA[Recently I needed to create a duplicate of PGSQL database.  Being a MySQL guy, I didn&#8217;t know off hand how to do it, but here is an easy way: pg_dump original_db &#62; original_db.sql createdb new_db psql -d new_db &#60; original_db.sql From a bird&#8217;s eye view, you are creating a dump of the original database and [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I needed to create a duplicate of PGSQL database.  Being a MySQL guy, I didn&#8217;t know off hand how to do it, but here is an easy way:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">pg_dump original_db <span style="color: #339933;">&gt;</span> original_db<span style="color: #339933;">.</span>sql
createdb new_db
psql <span style="color: #339933;">-</span>d new_db <span style="color: #339933;">&lt;</span> original_db<span style="color: #339933;">.</span>sql</pre></div></div>

<p>From a bird&#8217;s eye view, you are creating a dump of the original database and outputting it to a file.  From there, make sure the new database is created and use your dump file as input for that database.  It wouldn&#8217;t be too hard to make this into a one-liner, but I like to see intermediate steps to make sure things are going well.</p>
]]></content:encoded>
			<wfw:commentRss>http://serversideguy.com/2009/08/10/how-to-duplicate-a-pgsql-database/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Upgrading WordPress MU from 2.6 to 2.7</title>
		<link>http://serversideguy.com/2009/05/01/upgrading-wordpress-mu-from-26-to-27/</link>
		<comments>http://serversideguy.com/2009/05/01/upgrading-wordpress-mu-from-26-to-27/#comments</comments>
		<pubDate>Fri, 01 May 2009 22:42:55 +0000</pubDate>
		<dc:creator>Tim Barsness</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[File Permissions]]></category>
		<category><![CDATA[Wordpress MU]]></category>

		<guid isPermaLink="false">http://serversideguy.com/?p=9</guid>
		<description><![CDATA[I know I&#8217;m late to the game but I tried upgrading wordpress from version 2.6 to 2.7 today.  I ran into the seemingly all-too-common redirect loop which seems to have to do with the wp-config.php keys and salts. Thanks to a comment on the wordpress forums, I was able to find a resolution, which was [...]]]></description>
			<content:encoded><![CDATA[<p>I know I&#8217;m late to the game but I tried upgrading wordpress from version 2.6 to 2.7 today.  I ran into the seemingly all-too-common <a href="http://mu.wordpress.org/forums/topic.php?id=9252" target="_blank">redirect loop</a> which seems to have to do with the wp-config.php keys and salts.</p>
<p>Thanks to a comment on the <a href="http://mu.wordpress.org/forums/topic.php?id=9872">wordpress forums</a>, I was able to find a resolution, which was to remove the block of KEYS and SALTS entirely from the wp-config.php file.  Then, upon login, MU notifies you that your keys are incorrect and asks you to update them.  A simple fix to something that I thought would be a major problem.</p>
<p>I have to say, WordPress 2.7 is significantly better than 2.6 AND 2.7 MU is even better than that if you are running multiple blogs.  What fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://serversideguy.com/2009/05/01/upgrading-wordpress-mu-from-26-to-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

