<?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>Random Geekage &#187; reset</title>
	<atom:link href="http://kevinisageek.org/tag/reset/feed/" rel="self" type="application/rss+xml" />
	<link>http://kevinisageek.org</link>
	<description>Randomness, geekery and whatever else I feel like</description>
	<lastBuildDate>Tue, 07 Sep 2010 21:59:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Reset MySQL Root Password</title>
		<link>http://kevinisageek.org/2009/03/06/reset-mysql-root-password/</link>
		<comments>http://kevinisageek.org/2009/03/06/reset-mysql-root-password/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 15:53:27 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Random Knowlege]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[root]]></category>

		<guid isPermaLink="false">/?p=465</guid>
		<description><![CDATA[If for some reason the root account your MySQL install is locked out, follow this procedure to reset it. First, stop the MySQL server, this is dependant on how your system operates. For a Debian based box (Ubuntu, Knoppix et al): sudo /etc/init.d/mysql stop Next, start up MySQL and tell it to bypass the authentication [...]]]></description>
			<content:encoded><![CDATA[<p>If for some reason the root account your MySQL install is locked out, follow this procedure to reset it.</p>
<p>First, stop the MySQL server, this is dependant on how your system operates. For a Debian based box (Ubuntu, Knoppix et al):</p>
<pre>sudo /etc/init.d/mysql stop</pre>
<p>Next, start up MySQL and tell it to bypass the authentication tables (the &amp; is to background the process):</p>
<pre>mysqld_safe --skip-grant-tables &amp;</pre>
<p>Launch the MySQL client:</p>
<pre>mysql -u root mysql</pre>
<p>and finally change the root password:</p>
<pre>update user set Password=PASSWORD('new-password') where user='root';
flush privileges;
exit;</pre>
<p>Kill the running MySQL server and start it again as per usual.</p>
<p>Content copied from <a href="http://www.howtoforge.com/reset-forgotten-mysql-root-password">http://www.howtoforge.com/reset-forgotten-mysql-root-password</a></p>
]]></content:encoded>
			<wfw:commentRss>http://kevinisageek.org/2009/03/06/reset-mysql-root-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
