<?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>kb.hurricane-ridge.com &#187; mysql</title>
	<atom:link href="http://kb.hurricane-ridge.com/tag/mysql/feed" rel="self" type="application/rss+xml" />
	<link>http://kb.hurricane-ridge.com</link>
	<description>My personal - but public - knowledge base</description>
	<lastBuildDate>Mon, 09 Jan 2012 14:49:05 +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>MySQL Source Installation Checklist</title>
		<link>http://kb.hurricane-ridge.com/applications/mysql-source-installation-checklist</link>
		<comments>http://kb.hurricane-ridge.com/applications/mysql-source-installation-checklist#comments</comments>
		<pubDate>Thu, 15 Jan 2009 22:14:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=157</guid>
		<description><![CDATA[Installation overview: shell&#62; groupadd mysql shell&#62; useradd -g mysql mysql shell&#62; gunzip cd mysql-VERSION shell&#62; ./configure --prefix=/usr/local/mysql shell&#62; make shell&#62; make install shell&#62; cp support-files/my-medium.cnf /etc/my.cnf shell&#62; cd /usr/local/mysql shell&#62; bin/mysql_install_db --user=mysql shell&#62; chown -R root . shell&#62; chown -R mysql var shell&#62; chgrp -R mysql . shell&#62; bin/mysqld_safe --user=mysql &#38; shell&#62; /usr/local/mysql/bin/mysqladmin -u root [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>Installation overview:<br />
<code><br />
shell&gt; groupadd mysql<br />
shell&gt; useradd -g mysql mysql<br />
shell&gt; gunzip cd mysql-VERSION<br />
shell&gt; ./configure --prefix=/usr/local/mysql<br />
shell&gt; make<br />
shell&gt; make install<br />
shell&gt; cp support-files/my-medium.cnf /etc/my.cnf<br />
shell&gt; cd /usr/local/mysql<br />
shell&gt; bin/mysql_install_db --user=mysql<br />
shell&gt; chown -R root .<br />
shell&gt; chown -R mysql var<br />
shell&gt; chgrp -R mysql .<br />
shell&gt; bin/mysqld_safe --user=mysql &amp;<br />
shell&gt; /usr/local/mysql/bin/mysqladmin -u root password \<br />
'new-password'<br />
shell&gt; /usr/local/mysql/bin/mysqladmin -u root -h \<br />
www.hurricane-ridge.com password 'new-password'</code></li>
<li>Then, log into the database as root, and run the following commands to remove anonymous accounts:<br />
<code><br />
use mysql;<br />
delete from user where User='';<br />
delete from db where User='';<br />
flush privileges;</code></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/applications/mysql-source-installation-checklist/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change a User&#8217;s Password in MySQL</title>
		<link>http://kb.hurricane-ridge.com/applications/change-a-users-password-in-mysql</link>
		<comments>http://kb.hurricane-ridge.com/applications/change-a-users-password-in-mysql#comments</comments>
		<pubDate>Thu, 15 Jan 2009 21:51:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=135</guid>
		<description><![CDATA[Log in to the database as root and do the following: mysql&#62; USE mysql; mysql&#62; UPDATE user SET password = password('newpassword') WHERE User='username'; mysql&#62; FLUSH PRIVILEGES;]]></description>
			<content:encoded><![CDATA[<p>Log in to the database as root and do the following:</p>
<p><code><br />
mysql&gt; USE mysql;<br />
mysql&gt; UPDATE user SET password = password('newpassword')<br />
WHERE User='username';<br />
mysql&gt; FLUSH PRIVILEGES;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/applications/change-a-users-password-in-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Ports Installation Checklist</title>
		<link>http://kb.hurricane-ridge.com/applications/mysql-ports-installation-checklist</link>
		<comments>http://kb.hurricane-ridge.com/applications/mysql-ports-installation-checklist#comments</comments>
		<pubDate>Tue, 30 Dec 2008 20:39:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[ports]]></category>

		<guid isPermaLink="false">http://kb.hurricane-ridge.com/?p=68</guid>
		<description><![CDATA[A brief summary of after-installation MySQL configuration when using FreeBSD&#8217;s ports system. Log into the database as root, and run the following commands to remove anonymous accounts: use mysql; delete from user where User=''; delete from db where User=''; flush privileges; SET PASSWORD FOR root@localhost=PASSWORD('newgoodstrongpassword'); SET PASSWORD FOR root@127.0.0.1=PASSWORD('newgoodstrongpassword'); SET PASSWORD FOR root@host.example.com=PASSWORD('newgoodstrongpassword');]]></description>
			<content:encoded><![CDATA[<p>A brief summary of after-installation MySQL configuration when using FreeBSD&#8217;s ports system.</p>
<ul>
<li>Log into the database as root, and run the following commands to remove anonymous accounts:<code><br />
use mysql;<br />
delete from user where User='';<br />
delete from db where User='';<br />
flush privileges;<br />
SET PASSWORD FOR root@localhost=PASSWORD('newgoodstrongpassword');<br />
SET PASSWORD FOR root@127.0.0.1=PASSWORD('newgoodstrongpassword');<br />
SET PASSWORD FOR root@host.example.com=PASSWORD('newgoodstrongpassword');</code></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://kb.hurricane-ridge.com/applications/mysql-ports-installation-checklist/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

