<?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>Supporting the UW Web &#187; mysql</title>
	<atom:link href="http://staff.washington.edu/agraf/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://staff.washington.edu/agraf</link>
	<description></description>
	<lastBuildDate>Wed, 06 May 2009 21:34:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Student Web Server Upgrade &#8211; move yer mysql</title>
		<link>http://staff.washington.edu/agraf/2009/04/09/student-web-server-upgrade-move-yer-mysql/</link>
		<comments>http://staff.washington.edu/agraf/2009/04/09/student-web-server-upgrade-move-yer-mysql/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 22:29:38 +0000</pubDate>
		<dc:creator>agraf</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://staff.washington.edu/agraf/?p=72</guid>
		<description><![CDATA[The student Web servers are being upgraded this month:
 Student Web Server Upgrade
 http://www.washington.edu/computing/web/publishing/server-upgrade.html
It looks like there are still 271 MySQL servers that need to move.  They have 13 days to do that.  On April 22nd, the DNS name vergil.washington.edu will go to vergil01 instead of vergil21, and Web applications won&#8217;t connect to [...]]]></description>
			<content:encoded><![CDATA[<p>The student Web servers are being upgraded this month:</p>
<p> Student Web Server Upgrade<br />
 <a href="http://www.washington.edu/computing/web/publishing/server-upgrade.html">http://www.washington.edu/computing/web/publishing/server-upgrade.html</a></p>
<p>It looks like there are still 271 MySQL servers that need to move.  They have 13 days to do that.  On April 22nd, the DNS name vergil.washington.edu will go to vergil01 instead of vergil21, and Web applications won&#8217;t connect to those MySQL servers running on vergil21 anymore, assuming they are connecting to vergil.washington.edu.</p>
<p>Here are current numbers of MySQL servers on vergil and vergil01:</p>
<p><strong>Current vergil</strong> (vergil21.u.washington.edu)<br />
load: 6.37 mysqlds: 271<br />
<strong><br />
New vergil</strong> (vergil01.u.washington.edu)<br />
load: 0.03 mysqlds: 3</p>
<p>Many more details of what is being upgraded are on the page linked at the top of this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://staff.washington.edu/agraf/2009/04/09/student-web-server-upgrade-move-yer-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving a MediaWiki installation from InnoDB to MyISAM</title>
		<link>http://staff.washington.edu/agraf/2008/05/05/moving-a-mediawiki-installation-from-innodb-to-myisam/</link>
		<comments>http://staff.washington.edu/agraf/2008/05/05/moving-a-mediawiki-installation-from-innodb-to-myisam/#comments</comments>
		<pubDate>Mon, 05 May 2008 23:39:16 +0000</pubDate>
		<dc:creator>agraf</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[InnoDB]]></category>
		<category><![CDATA[MediaWiki]]></category>
		<category><![CDATA[search-and-replace]]></category>

		<guid isPermaLink="false">http://staff.washington.edu/agraf/?p=26</guid>
		<description><![CDATA[
Export the DB to sql statements.
Search-and-replace &#8220;InnoDB&#8221; with &#8220;MYISAM&#8221;.
Re-import the tables.  Might want to do this into a different DB than the old one, just in case.
Configure MediaWiki to use the new MyISAM DB.
Make sure the user MediaWiki is using to connect to MySQL will be able to access the new DB.

Bonus:

Put the &#8220;skip-innodb&#8221; line [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>Export the DB to sql statements.</li>
<li>Search-and-replace &#8220;InnoDB&#8221; with &#8220;MYISAM&#8221;.</li>
<li>Re-import the tables.  Might want to do this into a different DB than the old one, just in case.</li>
<li>Configure MediaWiki to use the new MyISAM DB.</li>
<li>Make sure the user MediaWiki is using to connect to MySQL will be able to access the new DB.</li>
</ul>
<p>Bonus:</p>
<ul>
<li>Put the &#8220;skip-innodb&#8221; line into the .my.cnf file.</li>
<li>Stop the DB.</li>
<li>Start the DB.</li>
</ul>
<p>InnoDB is gone.  Yaaay.</p>
<p>detail:</p>
<blockquote><p>
<kbd>bin/mysqldump -u root -p --lock-tables --add-drop-database DATABASE_NAME &gt; DATABASE_NAME.sql</kbd></p>
<p><kbd>/rc22/d77/agraf/bin/rpl  'ENGINE=InnoDB' 'ENGINE=MyISAM' DATABASE_NAME.sql</kbd></p>
<p><kbd>bin/mysql -u root -p DATABASE_NAME &lt; DATABASE_NAME.sql</kdb>
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://staff.washington.edu/agraf/2008/05/05/moving-a-mediawiki-installation-from-innodb-to-myisam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wiki installation documentation updates</title>
		<link>http://staff.washington.edu/agraf/2008/04/23/wiki-installation-documentation-updates/</link>
		<comments>http://staff.washington.edu/agraf/2008/04/23/wiki-installation-documentation-updates/#comments</comments>
		<pubDate>Wed, 23 Apr 2008 23:59:01 +0000</pubDate>
		<dc:creator>agraf</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://staff.washington.edu/agraf/?p=24</guid>
		<description><![CDATA[Today I updated the documentation for installing some wikis.

MediaWiki instructions went from version 1.11.0 to 1.12.0
MoinMoin instructions went from version 1.5.3 to 1.5.8

The new version of MediaWiki has an option for selecting InnoDB or MyISAM, so the previous changes to that documentation don&#8217;t seem quite as necessary, but they still make sense, so I&#8217;ve left [...]]]></description>
			<content:encoded><![CDATA[<p>Today I updated the documentation for installing some wikis.</p>
<ul>
<li><a href="http://www.washington.edu/computing/web/publishing/mediawiki.html">MediaWiki instructions</a> went from version 1.11.0 to 1.12.0</li>
<li><a href="http://www.washington.edu/computing/web/publishing/moinmoin.html">MoinMoin instructions</a> went from version 1.5.3 to 1.5.8</li>
</ul>
<p>The new version of MediaWiki has an option for selecting InnoDB or MyISAM, so the previous changes to that documentation don&#8217;t seem quite as necessary, but they still make sense, so I&#8217;ve left them intact.</p>
]]></content:encoded>
			<wfw:commentRss>http://staff.washington.edu/agraf/2008/04/23/wiki-installation-documentation-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t Use InnoDB over NFS</title>
		<link>http://staff.washington.edu/agraf/2008/04/21/dont-use-innodb-over-nfs/</link>
		<comments>http://staff.washington.edu/agraf/2008/04/21/dont-use-innodb-over-nfs/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 18:55:06 +0000</pubDate>
		<dc:creator>agraf</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wiki]]></category>
		<category><![CDATA[InnoDB]]></category>
		<category><![CDATA[MediaWiki]]></category>

		<guid isPermaLink="false">http://staff.washington.edu/agraf/?p=22</guid>
		<description><![CDATA[I edited the MediaWiki instructions today to include a note that users should disable InnoDB before installing MediaWiki.  If people do this, then their wikis will work after MySQL has been automatically restarted by cron after a system restart.  If people don&#8217;t do this, then I have to fix their databases after a [...]]]></description>
			<content:encoded><![CDATA[<p>I edited the <a href="http://www.washington.edu/computing/web/publishing/mediawiki.html#preReq">MediaWiki instructions</a> today to include a note that users should disable InnoDB before installing MediaWiki.  If people do this, then their wikis will work after MySQL has been automatically restarted by cron after a system restart.  If people don&#8217;t do this, then I have to fix their databases after a system restart due to stale NFS locks.<br />
I wrote about this topic last Monday.  Since then I read about MediaWiki and MySQL storage engines, and tried an experiment where I converted the InnoDB tables my MediaWiki installation was using to MyISAM tables.  As far as I can tell, MediaWiki works fine using MyISAM.</p>
<p>Here&#8217;s a brief mention on the MySQL Reference Manual of problems that InnoDB has when its data or log files are stored on NFS volumes: <a href="http://dev.mysql.com/doc/refman/5.0/en/innodb-restrictions.html">Restrictions on InnoDB Tables</a></p>
<blockquote><p>
<strong>Warning</strong></p>
<p>It is not a good idea to configure  to use datafiles or logfiles on NFS volumes. Otherwise, the files might be locked by other processes and become unavailable for use by MySQL.
</p></blockquote>
<p>The issue in the cases I see commonly seems to be that when the NFS client system is rebooted, the NFS server does not get any notice that locks should be released on the files.  When the NFS client comes back up from the reboot and reconnects to the server, those files are still locked, and the client cannot get a new lock on them.  This causes MySQL to issue errors like the following:</p>
<blockquote><p>
InnoDB: Unable to lock ./ibdata1, error: 11<br />
InnoDB: Check that you do not already have another mysqld process<br />
InnoDB: using the same InnoDB data or log files.</p></blockquote>
<p>and this:</p>
<blockquote><p>InnoDB: Operating system error number 11 in a file operation.<br />
InnoDB: Error number 11 means &#8216;Resource temporarily unavailable&#8217;.<br />
InnoDB: Some operating system error numbers are described at<br />
InnoDB: http://dev.mysql.com/doc/refman/5.0/en/operating-system-error-codes.html<br />
InnoDB: Could not open or create data files.<br />
InnoDB: If you tried to add new data files, and it failed here,<br />
InnoDB: you should now edit innodb_data_file_path in my.cnf back<br />
InnoDB: to what it was, and remove the new ibdata files InnoDB created<br />
InnoDB: in this failed attempt. InnoDB only wrote those files full of<br />
InnoDB: zeros, but did not yet use them in any way. But be careful: do not<br />
InnoDB: remove old data files which contain your precious data!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://staff.washington.edu/agraf/2008/04/21/dont-use-innodb-over-nfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MediaWiki Instructions Revision</title>
		<link>http://staff.washington.edu/agraf/2008/04/14/mediawiki-instructions-revision/</link>
		<comments>http://staff.washington.edu/agraf/2008/04/14/mediawiki-instructions-revision/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 23:32:14 +0000</pubDate>
		<dc:creator>agraf</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[sso authentication]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://staff.washington.edu/agraf/?p=18</guid>
		<description><![CDATA[For probably at least a year I have had instructions for installing MediaWiki on the UA Web servers.
Installing MediaWiki
http://www.washington.edu/computing/web/publishing/mediawiki.html
These instructions include a default installation that uses the MediaWiki user and authentication system, as well as an option for using the Pubcookie SSO authentication system that is used for most UW Technology applications at the University [...]]]></description>
			<content:encoded><![CDATA[<p>For probably at least a year I have had instructions for installing <a href="http://www.mediawiki.org/wiki/MediaWiki">MediaWiki</a> on the UA Web servers.</p>
<p>Installing MediaWiki<br />
<a title="http://www.washington.edu/computing/web/publishing/mediawiki.html" href="http://www.washington.edu/computing/web/publishing/mediawiki.html">http://www.washington.edu/computing/web/publishing/mediawiki.html</a></p>
<p>These instructions include a default installation that uses the MediaWiki user and authentication system, as well as an option for using the <a href="http://pubcookie.org/">Pubcookie</a> SSO authentication system that is used for most UW Technology applications at the University of Washington.  The problem with the way those instructions say to set things up is that you need to log in with Pubcookie before you can even view the wiki.  This isn&#8217;t always what&#8217;s desired.</p>
<p>A couple weeks ago two users requested a means of setting up MediaWiki so that it could be anonymously read, but users would need to log in using Pubcookie in order to edit a page.  I came up with a solution which they were both happy with, and which seems to work.  I am not sure if there are ways of breaking MediaWiki when it is configured in this manner, but it seems to be working fine so far.</p>
<p>Here is a copy of MediaWiki configured with the new anonymous read/Pubcookie required for edits configuration:</p>
<p><a href="http://staff.washington.edu/agraf/mediawiki">Test Wiki</a></p>
<p>The instructions have now been updated to include the new section called &#8220;<a href="http://www.washington.edu/computing/web/publishing/mediawiki.html#anon-read">Requiring UW NetID Authentication only for Editing</a>&#8220;.</p>
<p>The next thing to work on is changing the MediaWiki documentation to inform users that they should probably use the <a href="http://dev.mysql.com/doc/refman/5.0/en/myisam-storage-engine.html">MyISAM </a>storage engine on MediaWiki installations backed by MySQL on the UA Web servers.  This is because <a href="http://dev.mysql.com/doc/refman/5.0/en/innodb.html">InnoDB </a>databases will not come back automatically if ovid is restarted without shutting down MySQL first.  The culprit is <a href="http://en.wikipedia.org/wiki/Network_File_System">NFS</a>, which is used to serve all the files in user Web and home directories on the UA system.</p>
]]></content:encoded>
			<wfw:commentRss>http://staff.washington.edu/agraf/2008/04/14/mediawiki-instructions-revision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C&amp;C-installed MySQL binaries</title>
		<link>http://staff.washington.edu/agraf/2007/12/18/cc-installed-mysql-binaries/</link>
		<comments>http://staff.washington.edu/agraf/2007/12/18/cc-installed-mysql-binaries/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 17:04:05 +0000</pubDate>
		<dc:creator>agraf</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://staff.washington.edu/agraf/2007/12/18/cc-installed-mysql-binaries/</guid>
		<description><![CDATA[ I&#8217;ve got some instructions up for how to use the C&#38;C-installed MySQL binaries.  Noone should have to install MySQL on ovid or vergil anymore, which will save lots of disk space.  This also means you shouldn&#8217;t have to install upgrades.
I&#8217;ve been using this copy of MySQL for running this blog, and any [...]]]></description>
			<content:encoded><![CDATA[<p> I&#8217;ve got some instructions up for how to use the C&amp;C-installed MySQL binaries.  Noone should have to install MySQL on ovid or vergil anymore, which will save lots of disk space.  This also means you shouldn&#8217;t have to install upgrades.</p>
<p>I&#8217;ve been using this copy of MySQL for running this blog, and any other MySQL applications I happen to be running, for months, and it works for me.  It looks like 26 other accounts are using this copy of MySQL already.  Good for them!</p>
<p><a href="https://staff.washington.edu/agraf/wordpress/wp-admin/Using%20the%20C&amp;C-installed%20MySQL%20binaries">Using the C&amp;C-Installed MySQL Binaries<br />
</a>http://www.washington.edu/computing/web/publishing/mysql-installed.html</p>
<p><strong>Update: </strong></p>
<p>The old cron script should now work fine, due to changes in the setup script.</p>
<p>The mysql_upgrade script, which checks all tables in all             databases for incompatibilities with the current version of             MySQL Server, has a bug that doesn&#8217;t allow it to process passwords correctly. We are planning to upgrade MySQL to 5.0.45 on Jan 2nd.  This version has the mysql_upgrade bug fixed.</p>
]]></content:encoded>
			<wfw:commentRss>http://staff.washington.edu/agraf/2007/12/18/cc-installed-mysql-binaries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Revising MySQL instructions</title>
		<link>http://staff.washington.edu/agraf/2007/09/18/revising-mysql-instructions/</link>
		<comments>http://staff.washington.edu/agraf/2007/09/18/revising-mysql-instructions/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 22:58:39 +0000</pubDate>
		<dc:creator>agraf</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://staff.washington.edu/agraf/2007/12/18/revising-mysql-instructions/</guid>
		<description><![CDATA[This week and next week I&#8217;m hoping to get all of the MySQL instructions I currently have at www.washington.edu/computing/web/publishing/ revised to reflect the current systems and relatively recent versions of the software they discuss.
Changes I&#8217;ve made so far

Merged myuw.net MySQL documentation into main docs (still needs some work)
Updated the warning about the size of the [...]]]></description>
			<content:encoded><![CDATA[<p>This week and next week I&#8217;m hoping to get all of the MySQL instructions I currently have at <a href="http://washington.edu/computing/web/publishing">www.washington.edu/computing/web/publishing/</a> revised to reflect the current systems and relatively recent versions of the software they discuss.</p>
<p><strong>Changes I&#8217;ve made so far</strong></p>
<ul>
<li>Merged myuw.net MySQL documentation into main docs (still needs some work)</li>
<li>Updated the warning about the size of the install on the install page</li>
<li>Removed ovid migration-specific notes from install page</li>
</ul>
<p><strong><underline>Future MySQL documentation goals</underline></strong></p>
<ul>
<li>Create migration and installation instructions for system-wide MySQL installation</li>
<li> Develop and publish policies governing how this installation will be upgraded and how databases will be migrated to new versions of MySQL</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://staff.washington.edu/agraf/2007/09/18/revising-mysql-instructions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving MySQL from ovid to ovid21</title>
		<link>http://staff.washington.edu/agraf/2007/06/18/moving-mysql-from-ovid-to-ovid21/</link>
		<comments>http://staff.washington.edu/agraf/2007/06/18/moving-mysql-from-ovid-to-ovid21/#comments</comments>
		<pubDate>Mon, 18 Jun 2007 17:30:10 +0000</pubDate>
		<dc:creator>agraf</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://staff.washington.edu/agraf/wordpress/?p=10</guid>
		<description><![CDATA[The big move from MySQL 4 on ovid to MySQL 5 on ovid21 is well underway.



date
Server
# of MySQL
Servers


4/6/07
ovid
262


ovid21
40


4/9/07
ovid
259


ovid21
42


4/11/07
ovid
256


ovid21
53


4/16/07
ovid
253


ovid21
55


4/20/07
ovid
250


ovid21
66


4/23/07
ovid
250


ovid21
67


4/25/07
ovid
246


ovid21
76


4/30/07
ovid
245


ovid21
84


5/2/07
ovid
246


ovid21
87


5/4/07
ovid
244


ovid21
90


5/8/07
ovid
244


ovid21
94


5/14/07
ovid
240


ovid21
106


6/6/07
ovid
230


ovid21
137


6/13/07
ovid
230


ovid21
142


6/18/07
ovid
228


ovid21
148


6/28/07
ovid
228


ovid21
162


7/03/07
ovid
227


ovid21
167


7/09/07
ovid
195


ovid21
200


Instructions for installing MySQL 5 on ovid21 linked below.  Now including notes that might help you move from MySQL 4 on ovid!
Installing and Starting MySQL 5.0
http://www.washington.edu/computing/web/publishing/mysql5-install.html
]]></description>
			<content:encoded><![CDATA[<p>The big move from MySQL 4 on ovid to MySQL 5 on ovid21 is well underway.</p>
<p><!-- ps auxww | grep mysql | awk '{print $1}' | sort |uniq | wc -l --></p>
<table style="height: 82px" width="400">
<tr>
<th>date</th>
<th>Server</th>
<th># of MySQL<br />
Servers</th>
</tr>
<tr>
<td rowspan="2">4/6/07</td>
<td>ovid</td>
<td>262</td>
</tr>
<tr>
<td>ovid21</td>
<td>40</td>
</tr>
<tr>
<td rowspan="2">4/9/07</td>
<td>ovid</td>
<td>259</td>
</tr>
<tr>
<td>ovid21</td>
<td>42</td>
</tr>
<tr>
<td rowspan="2">4/11/07</td>
<td>ovid</td>
<td>256</td>
</tr>
<tr>
<td>ovid21</td>
<td>53</td>
</tr>
<tr>
<td rowspan="2">4/16/07</td>
<td>ovid</td>
<td>253</td>
</tr>
<tr>
<td>ovid21</td>
<td>55</td>
</tr>
<tr>
<td rowspan="2">4/20/07</td>
<td>ovid</td>
<td>250</td>
</tr>
<tr>
<td>ovid21</td>
<td>66</td>
</tr>
<tr>
<td rowspan="2">4/23/07</td>
<td>ovid</td>
<td>250</td>
</tr>
<tr>
<td>ovid21</td>
<td>67</td>
</tr>
<tr>
<td rowspan="2">4/25/07</td>
<td>ovid</td>
<td>246</td>
</tr>
<tr>
<td>ovid21</td>
<td>76</td>
</tr>
<tr>
<td rowspan="2">4/30/07</td>
<td>ovid</td>
<td>245</td>
</tr>
<tr>
<td>ovid21</td>
<td>84</td>
</tr>
<tr>
<td rowspan="2">5/2/07</td>
<td>ovid</td>
<td>246</td>
</tr>
<tr>
<td>ovid21</td>
<td>87</td>
</tr>
<tr>
<td rowspan="2">5/4/07</td>
<td>ovid</td>
<td>244</td>
</tr>
<tr>
<td>ovid21</td>
<td>90</td>
</tr>
<tr>
<td rowspan="2">5/8/07</td>
<td>ovid</td>
<td>244</td>
</tr>
<tr>
<td>ovid21</td>
<td>94</td>
</tr>
<tr>
<td rowspan="2">5/14/07</td>
<td>ovid</td>
<td>240</td>
</tr>
<tr>
<td>ovid21</td>
<td>106</td>
</tr>
<tr>
<td rowspan="2">6/6/07</td>
<td>ovid</td>
<td>230</td>
</tr>
<tr>
<td>ovid21</td>
<td>137</td>
</tr>
<tr>
<td rowspan="2">6/13/07</td>
<td>ovid</td>
<td>230</td>
</tr>
<tr>
<td>ovid21</td>
<td>142</td>
</tr>
<tr>
<td rowspan="2">6/18/07</td>
<td>ovid</td>
<td>228</td>
</tr>
<tr>
<td>ovid21</td>
<td>148</td>
</tr>
<tr>
<td rowspan="2">6/28/07</td>
<td>ovid</td>
<td>228</td>
</tr>
<tr>
<td>ovid21</td>
<td>162</td>
</tr>
<tr>
<td rowspan="2">7/03/07</td>
<td>ovid</td>
<td>227</td>
</tr>
<tr>
<td>ovid21</td>
<td>167</td>
</tr>
<tr>
<td rowspan="2">7/09/07</td>
<td>ovid</td>
<td>195</td>
</tr>
<tr>
<td>ovid21</td>
<td>200</td>
</tr>
</table>
<p>Instructions for installing MySQL 5 on ovid21 linked below.  Now including notes that might help you move from MySQL 4 on ovid!</p>
<p><strong>Installing and Starting MySQL 5.0</strong><br />
<a href="http://www.washington.edu/computing/web/publishing/mysql5-install.html">http://www.washington.edu/computing/web/publishing/mysql5-install.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://staff.washington.edu/agraf/2007/06/18/moving-mysql-from-ovid-to-ovid21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
