<?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>Sam Pierson&#039;s Blog &#187; mysql</title>
	<atom:link href="http://sampierson.com/blog/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://sampierson.com/blog</link>
	<description>Augmentation of an Imperfect Memory.</description>
	<lastBuildDate>Wed, 21 Jul 2010 01:41:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Completely uninstall mysql from Mac OS X</title>
		<link>http://sampierson.com/blog/uncategorized/completely-uninstall-mysql-from-mac-os-x/</link>
		<comments>http://sampierson.com/blog/uncategorized/completely-uninstall-mysql-from-mac-os-x/#comments</comments>
		<pubDate>Thu, 14 May 2009 23:54:42 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://sampierson.com/blog/?p=576</guid>
		<description><![CDATA[Remove mysql, prefpane item, startup item.
then:

sudo rm -rf /Library/Receipts/mysql*

There is a good complete explanation of this here.
]]></description>
			<content:encoded><![CDATA[<p>Remove mysql, prefpane item, startup item.<br />
then:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Receipts<span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>There is a good complete explanation of this <a href="http://akrabat.com/2008/09/11/uninstalling-mysql-on-mac-os-x-leopard/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sampierson.com/blog/uncategorized/completely-uninstall-mysql-from-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X command-line launchd control of mysql</title>
		<link>http://sampierson.com/blog/system-administration/osx-launchd-mysql-control/</link>
		<comments>http://sampierson.com/blog/system-administration/osx-launchd-mysql-control/#comments</comments>
		<pubDate>Thu, 14 May 2009 23:45:57 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://sampierson.com/blog/?p=572</guid>
		<description><![CDATA[To start, stop and disable mysql server from the command line:

# start
sudo launchctl start com.mysql.mysqld
# stop
sudo launchctl stop com.mysql.mysqld
# Unload
sudo launchctl unload /Library/LaunchDaemons/com.mysql.mysqld.plist

]]></description>
			<content:encoded><![CDATA[<p>To start, stop and disable mysql server from the command line:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># start</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> launchctl start com.mysql.mysqld
<span style="color: #666666; font-style: italic;"># stop</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> launchctl stop com.mysql.mysqld
<span style="color: #666666; font-style: italic;"># Unload</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> launchctl unload <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>LaunchDaemons<span style="color: #000000; font-weight: bold;">/</span>com.mysql.mysqld.plist</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://sampierson.com/blog/system-administration/osx-launchd-mysql-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Ruby MySQL gem on Mac OS X Leopard</title>
		<link>http://sampierson.com/blog/system-administration/installing-ruby-mysql-gem-on-mac-os-x-leopard/</link>
		<comments>http://sampierson.com/blog/system-administration/installing-ruby-mysql-gem-on-mac-os-x-leopard/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 13:24:30 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://sampierson.com/blog/?p=254</guid>
		<description><![CDATA[Thanks to this post, I discovered how to install the MySQL ruby gem on Mac OS X:
You must be using the x86 variant of MySQL, not x86_64, apparently.  Then:

sudo env ARCHFLAGS=&#34;-arch i386&#34; gem install mysql -- \
--with-mysql-dir=/usr/local/mysql --with-mysql-lib=/usr/local/mysql/lib \
--with-mysql-include=/usr/local/mysql/include

]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://wonko.com/post/how-to-install-the-mysqlruby-gem-on-mac-os-x-leopard">this post</a>, I discovered how to install the MySQL ruby gem on Mac OS X:</p>
<p>You must be using the x86 variant of MySQL, not x86_64, apparently.  Then:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">env</span> <span style="color: #007800;">ARCHFLAGS</span>=<span style="color: #ff0000;">&quot;-arch i386&quot;</span> gem <span style="color: #c20cb9; font-weight: bold;">install</span> mysql <span style="color: #660033;">--</span> \
<span style="color: #660033;">--with-mysql-dir</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span><span style="color: #000000; font-weight: bold;">/</span>mysql <span style="color: #660033;">--with-mysql-lib</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span><span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">/</span>lib \
<span style="color: #660033;">--with-mysql-include</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span><span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">/</span>include</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://sampierson.com/blog/system-administration/installing-ruby-mysql-gem-on-mac-os-x-leopard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SchemaSpy with MySQL on Mac OS X</title>
		<link>http://sampierson.com/blog/software-development/schemaspy-with-mysql-on-mac-os-x/</link>
		<comments>http://sampierson.com/blog/software-development/schemaspy-with-mysql-on-mac-os-x/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 19:16:07 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://sampierson.com/blog/?p=250</guid>
		<description><![CDATA[To get SchemaSpy working on Mac OS X, I:
Downloaded the latest SchemaSpy, schemaSpy_4.0.0.jar
Installed GraphViz using MacPorts

sudo port install graphviz

Installed the MySQL JDBC drivers using MacPorts

sudo port install mysql-connector-java

Ran it like this:

java -jar schemaSpy_4.0.0.jar -t mysql -dp /opt/local/var/macports/software/mysql-connector-java/5.0.7_0/opt/local/share/java/mysql-connector-java-5.0.jar -o &#60;outputdir&#62; -host localhost -db &#60;dbname&#62; -u &#60;username&#62; -p &#60;password&#62;

]]></description>
			<content:encoded><![CDATA[<p>To get SchemaSpy working on Mac OS X, I:</p>
<p>Downloaded the latest SchemaSpy, schemaSpy_4.0.0.jar</p>
<p>Installed GraphViz using MacPorts</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> port <span style="color: #c20cb9; font-weight: bold;">install</span> graphviz</pre></div></div>

<p>Installed the MySQL JDBC drivers using MacPorts</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> port <span style="color: #c20cb9; font-weight: bold;">install</span> mysql-connector-java</pre></div></div>

<p>Ran it like this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">java <span style="color: #660033;">-jar</span> schemaSpy_4.0.0.jar <span style="color: #660033;">-t</span> mysql <span style="color: #660033;">-dp</span> <span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span><span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>macports<span style="color: #000000; font-weight: bold;">/</span>software<span style="color: #000000; font-weight: bold;">/</span>mysql-connector-java<span style="color: #000000; font-weight: bold;">/</span>5.0.7_0<span style="color: #000000; font-weight: bold;">/</span>opt<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span><span style="color: #000000; font-weight: bold;">/</span>share<span style="color: #000000; font-weight: bold;">/</span>java<span style="color: #000000; font-weight: bold;">/</span>mysql-connector-java-5.0.jar <span style="color: #660033;">-o</span> <span style="color: #000000; font-weight: bold;">&lt;</span>outputdir<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #660033;">-host</span> localhost <span style="color: #660033;">-db</span> <span style="color: #000000; font-weight: bold;">&lt;</span>dbname<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #660033;">-u</span> <span style="color: #000000; font-weight: bold;">&lt;</span>username<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #660033;">-p</span> <span style="color: #000000; font-weight: bold;">&lt;</span>password<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://sampierson.com/blog/software-development/schemaspy-with-mysql-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting MySQL on Mac OS X</title>
		<link>http://sampierson.com/blog/system-administration/starting-mysql-on-mac-os-x/</link>
		<comments>http://sampierson.com/blog/system-administration/starting-mysql-on-mac-os-x/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 16:13:53 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://sampierson.com/blog/?p=115</guid>
		<description><![CDATA[If you installed the MySQLStartupItem that comes with mysql.com&#8217;s binary packaged MySQL server, you can:

sudo /Library/StartupItems/MySQLCOM/MySQLCOM start

to start the server.  This applies to Leopard.  Apparently under Tiger it had a different name.
]]></description>
			<content:encoded><![CDATA[<p>If you installed the MySQLStartupItem that comes with mysql.com&#8217;s binary packaged MySQL server, you can:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>StartupItems<span style="color: #000000; font-weight: bold;">/</span>MySQLCOM<span style="color: #000000; font-weight: bold;">/</span>MySQLCOM start</pre></div></div>

<p>to start the server.  This applies to Leopard.  Apparently under Tiger it had a different name.</p>
]]></content:encoded>
			<wfw:commentRss>http://sampierson.com/blog/system-administration/starting-mysql-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing MySQL (binaries) on Mac OS X Leopard</title>
		<link>http://sampierson.com/blog/system-administration/installing-mysql-on-mac-os-x-leopard/</link>
		<comments>http://sampierson.com/blog/system-administration/installing-mysql-on-mac-os-x-leopard/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 15:58:58 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://sampierson.com/blog/?p=104</guid>
		<description><![CDATA[There are a couple of possible ways to install MySQL server on Mac OS X Leopard. Which one you take depends on what is available at mysql.com. When a new version of Mac OS come out, in the past it has taken mysql.com many months to come up with packaged binary releases of MySQL server [...]]]></description>
			<content:encoded><![CDATA[<p>There are a couple of possible ways to install MySQL server on Mac OS X Leopard. Which one you take depends on what is available at mysql.com. When a new version of Mac OS come out, in the past it has taken mysql.com many months to come up with packaged binary releases of MySQL server for it. During that period you are forced to build MySQL server from sources &#8211; I will detail how to do that in a separate post.</p>
<div>
<p>For the purposes of this post, let us assume that binary packages are available. At the time of writing, there are binary packages of MySQL server 5.0 and 5.1 available for Mac OS X. The packages also come in two styles: a tar archive, and a .dmg containing .pkg format packages. The tar version contains a nice readme file called INSTALL-BINARY that details all the steps required to get install MySQL up from scratch (e.g. creating mysql user); This is well worth reading. For this go-around however, I decided to try out the .pkg packages.</p>
<p>I downloaded and mounted mysql-5.0.67-osx10.5-x86_64.dmg and mounted it.  It contains:</p>
<p>mysql-5.0.67-osx10.5-x86_64.pkg &#8211; the server<br />
MySQLStartupitem.pkg &#8211; guess what<br />
MySQL.prefPane &#8211; a prefpane to start/stop the server</p>
<p>Double-clicking on each of these will install them. The server package appears to be very well behaved &#8211; it installs into /usr/local/mysql-VERSION and them symlinks /usr/local/mysql to it. It execute all the other steps required to get the server up (create users, run mysql_install_db etc). The startup item installs to /Library/StartupItems/MySQLCOM.  The preference pane goes where preference panes go <img src='http://sampierson.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>After installing set your mysql root password with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">local</span><span style="color: #000000; font-weight: bold;">/</span>mysql<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>mysqladmin password <span style="color: #000000; font-weight: bold;">&lt;</span>new-password<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>and my personal preference is to then install phpmyadmin and go in and delete all other users before continuing.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://sampierson.com/blog/system-administration/installing-mysql-on-mac-os-x-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing phpMyAdmin for MySQL Administration</title>
		<link>http://sampierson.com/blog/system-administration/installing-phpmyadmin-for-mysql-administration/</link>
		<comments>http://sampierson.com/blog/system-administration/installing-phpmyadmin-for-mysql-administration/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 19:00:00 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">urn:uuid:52742551-b537-4fbc-865d-08d7267df67f</guid>
		<description><![CDATA[Download latest phpMyAdmin.
In an appropriate website content folder (e.g. /Library/WebServer/Documents/ on Mac OS X):

tar xvf ~/phpMyAdmin-2.11.8.1-english.tar.bz2
ln -s phpMyAdmin-2.11.8.1-english phpmyadmin
cd phpmyadmin
cp config.sample.inc.php config.inc.php

Edit config.inc.php and set your blowfish secret to a random string:

$cfg&#91;'blowfish_secret'&#93; = 'ertyrtfghrty';

On Mac OS X Leopard, there appears to be an issue with PHP that you have to resolve by changing localhost to [...]]]></description>
			<content:encoded><![CDATA[<p>Download latest phpMyAdmin.<br />
In an appropriate website content folder (e.g. /Library/WebServer/Documents/ on Mac OS X):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> xvf ~<span style="color: #000000; font-weight: bold;">/</span>phpMyAdmin-2.11.8.1-english.tar.bz2
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> phpMyAdmin-2.11.8.1-english phpmyadmin
<span style="color: #7a0874; font-weight: bold;">cd</span> phpmyadmin
<span style="color: #c20cb9; font-weight: bold;">cp</span> config.sample.inc.php config.inc.php</pre></div></div>

<p>Edit config.inc.php and set your blowfish secret to a random string:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$cfg</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'blowfish_secret'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'ertyrtfghrty'</span><span style="color: #339933;">;</span></pre></div></div>

<p>On Mac OS X Leopard, there appears to be an issue with PHP that you have to resolve by changing localhost to 127.0.0.1:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$cfg</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'Servers'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$i</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'host'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'127.0.0.1'</span><span style="color: #339933;">;</span></pre></div></div>

<p>Save the file, then browse to http://localhost/phpmyadmin, login as root as see how things look.</p>
]]></content:encoded>
			<wfw:commentRss>http://sampierson.com/blog/system-administration/installing-phpmyadmin-for-mysql-administration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting MySQL working on Mac OS X Server</title>
		<link>http://sampierson.com/blog/system-administration/getting-mysql-working-on-mac-os-x-server/</link>
		<comments>http://sampierson.com/blog/system-administration/getting-mysql-working-on-mac-os-x-server/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 17:00:00 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[System Administration]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">urn:uuid:539289f2-02ff-4fea-adfe-d9d0de871a43</guid>
		<description><![CDATA[The version of MySQL that comes preintsalled on MacOS X (Leopard) Server does not include client libraries and header files, as discussed here.  The remedy as discussed here is to:
Download MySQL-43.binaries.tar.gz
Stop MySQL Server if it was running (Server Admin -&#62; MySQL -&#62; Stop MySQL)

tar xvfz MySQL-43.binaries.tar.gz
cd MySQL-43.binaries
sudo tar -xzvf MySQL-43.root.tar.gz -C /

To configure and start MySQL:
Using Server Admin
Servername -&#62; Services -&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>The version of MySQL that comes preintsalled on MacOS X (Leopard) Server does not include client libraries and header files, as discussed <a href="http://discussions.apple.com/thread.jspa?threadID=1289454">here.</a>  The remedy as discussed <a href="http://docs.info.apple.com/article.html?artnum=306782">here</a> is to:</p>
<p>Download <a href="http://www.opensource.apple.com/darwinsource/other/MySQL-43.binaries.tar.gz">MySQL-43.binaries.tar.gz</a></p>
<p>Stop MySQL Server if it was running (Server Admin -&gt; MySQL -&gt; Stop MySQL)</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> xvfz MySQL-43.binaries.tar.gz
<span style="color: #7a0874; font-weight: bold;">cd</span> MySQL-43.binaries
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-xzvf</span> MySQL-43.root.tar.gz <span style="color: #660033;">-C</span> <span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<div>To configure and start MySQL:</div>
<div>Using Server Admin</div>
<div>Servername -&gt; Services -&gt; Enable MySQL service, Save.</div>
<div>Servername -&gt; MySQL -&gt; Set root password, Save.</div>
<div>Start MySQL.</div>
]]></content:encoded>
			<wfw:commentRss>http://sampierson.com/blog/system-administration/getting-mysql-working-on-mac-os-x-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
