<?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>Life of a Plesk Admin &#187; mysql</title>
	<atom:link href="http://www.lifeofapleskadmin.com/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lifeofapleskadmin.com</link>
	<description>Where i go for Geek</description>
	<lastBuildDate>Wed, 04 Jan 2012 15:18:42 +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>Enable connecting remotely to mysql database on CentOS</title>
		<link>http://www.lifeofapleskadmin.com/2011/10/enable-connecting-remotely-to-mysql-database-on-centos/</link>
		<comments>http://www.lifeofapleskadmin.com/2011/10/enable-connecting-remotely-to-mysql-database-on-centos/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 13:24:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.lifeofapleskadmin.com/?p=366</guid>
		<description><![CDATA[Edit file: /etc/my.cnf Comment out line: skip-networking So should look like this: #skip-networking Restart MySQL /etc/init.d/mysqld restart]]></description>
			<content:encoded><![CDATA[<p>Edit file:</p>
<pre>/etc/my.cnf</pre>
<p>Comment out line:</p>
<pre>skip-networking</pre>
<p>So should look like this:</p>
<pre>#skip-networking</pre>
<p>Restart MySQL</p>
<pre>/etc/init.d/mysqld restart</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.lifeofapleskadmin.com/2011/10/enable-connecting-remotely-to-mysql-database-on-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Find &amp; Replace Data in MySQL</title>
		<link>http://www.lifeofapleskadmin.com/2011/07/how-to-find-replace-data-in-mysql/</link>
		<comments>http://www.lifeofapleskadmin.com/2011/07/how-to-find-replace-data-in-mysql/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 23:48:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.lifeofapleskadmin.com/?p=301</guid>
		<description><![CDATA[To find a string in a certain field and replace it with another string: update [table_name] set [field_name] = replace([field_name],'[string_to_find]','[string_to_replace]'); Source: http://www.mediacollege.com/computer/database/mysql/find-replace.html]]></description>
			<content:encoded><![CDATA[<p>To find a string in a certain field and replace it with another string:</p>
<pre>update [table_name] set [field_name] = replace([field_name],'[string_to_find]','[string_to_replace]');</pre>
<p>Source: <a href="http://www.mediacollege.com/computer/database/mysql/find-replace.html">http://www.mediacollege.com/computer/database/mysql/find-replace.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lifeofapleskadmin.com/2011/07/how-to-find-replace-data-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To start/stop mysql server on a linux machine</title>
		<link>http://www.lifeofapleskadmin.com/2011/01/to-startstop-mysql-server/</link>
		<comments>http://www.lifeofapleskadmin.com/2011/01/to-startstop-mysql-server/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 18:13:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.lifeofapleskadmin.com/?p=239</guid>
		<description><![CDATA[To start mysql server: /etc/init.d/mysqld start To stop mysql server: /etc/init.d/mysqld stop To restart mysql server /etc/init.d/mysqld restart Source: http://theos.in/desktop-linux/tip-that-matters/how-do-i-restart-mysql-server/]]></description>
			<content:encoded><![CDATA[<p>To start mysql server:</p>
<pre>/etc/init.d/mysqld start</pre>
<p>To stop mysql server:</p>
<pre>/etc/init.d/mysqld stop</pre>
<p>To restart mysql server</p>
<pre> /etc/init.d/mysqld restart</pre>
<p>Source: <a href="http://theos.in/desktop-linux/tip-that-matters/how-do-i-restart-mysql-server/">http://theos.in/desktop-linux/tip-that-matters/how-do-i-restart-mysql-server/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lifeofapleskadmin.com/2011/01/to-startstop-mysql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allow external connections to MySQL server on Plesk</title>
		<link>http://www.lifeofapleskadmin.com/2010/05/allow-external-connections-to-mysql-server-on-plesk/</link>
		<comments>http://www.lifeofapleskadmin.com/2010/05/allow-external-connections-to-mysql-server-on-plesk/#comments</comments>
		<pubDate>Thu, 27 May 2010 22:49:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.lifeofapleskadmin.com/?p=203</guid>
		<description><![CDATA[Comment out &#8220;skip-networking parameter&#8221; in /etc/my.cnf]]></description>
			<content:encoded><![CDATA[<p>Comment out &#8220;skip-networking parameter&#8221; in /etc/my.cnf</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lifeofapleskadmin.com/2010/05/allow-external-connections-to-mysql-server-on-plesk/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL root can be viewed with</title>
		<link>http://www.lifeofapleskadmin.com/2009/11/mysql-root-can-be-viewed-with/</link>
		<comments>http://www.lifeofapleskadmin.com/2009/11/mysql-root-can-be-viewed-with/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 13:23:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.lifeofapleskadmin.com/?p=127</guid>
		<description><![CDATA[cat ~mysql/.my.cnf]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">cat</span> ~mysql<span style="color: #000000; font-weight: bold;">/</span>.my.cnf</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.lifeofapleskadmin.com/2009/11/mysql-root-can-be-viewed-with/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Load a mysql database dump via command line</title>
		<link>http://www.lifeofapleskadmin.com/2009/04/load-a-mysql-database-dump-via-command-line/</link>
		<comments>http://www.lifeofapleskadmin.com/2009/04/load-a-mysql-database-dump-via-command-line/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 11:27:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.lifeofapleskadmin.com/?p=74</guid>
		<description><![CDATA[Run this command on the command line to load a mysql database dump file mysql -u yourusername -p -h localhost databasename &#60; data.sql]]></description>
			<content:encoded><![CDATA[<p>Run this command on the command line to load a mysql database dump file</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mysql <span style="color: #660033;">-u</span> yourusername <span style="color: #660033;">-p</span> <span style="color: #660033;">-h</span> localhost databasename <span style="color: #000000; font-weight: bold;">&lt;</span> data.sql</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.lifeofapleskadmin.com/2009/04/load-a-mysql-database-dump-via-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to dump a mysql database via command line</title>
		<link>http://www.lifeofapleskadmin.com/2009/04/how-to-dump-a-mysql-database-via-command-line/</link>
		<comments>http://www.lifeofapleskadmin.com/2009/04/how-to-dump-a-mysql-database-via-command-line/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 11:09:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.lifeofapleskadmin.com/?p=66</guid>
		<description><![CDATA[Run this command to dump a database via command line mysqldump –u yourusername –p yourdatabasename &#62; yourdumpfile.sql]]></description>
			<content:encoded><![CDATA[<p>Run this command to dump a database via command line</p>

<div class="wp_syntax"><div class="code"><pre class="mysql" style="font-family:monospace;">mysqldump –u yourusername –p yourdatabasename <span style="color: #CC0099;">&gt;</span> yourdumpfile.sql</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.lifeofapleskadmin.com/2009/04/how-to-dump-a-mysql-database-via-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

