<?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>Kevin Bradwick &#187; remote access</title>
	<atom:link href="http://www.kevinbradwick.co.uk/tag/remote-access/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kevinbradwick.co.uk</link>
	<description>Web development and design blog</description>
	<lastBuildDate>Fri, 09 Jul 2010 08:11:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Grant remote access to MySQL</title>
		<link>http://www.kevinbradwick.co.uk/2010/01/grant-remote-access-to-mysql/</link>
		<comments>http://www.kevinbradwick.co.uk/2010/01/grant-remote-access-to-mysql/#comments</comments>
		<pubDate>Tue, 05 Jan 2010 18:05:32 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[remote access]]></category>

		<guid isPermaLink="false">http://www.kevinbradwick.co.uk/?p=45</guid>
		<description><![CDATA[If you&#8217;ve installed MySQL on a machine other than your work station (localhost) and you want to use the MYSQL GUI tools to administer the server then you&#8217;ll need to grant remote acccess on the root account (or another account that has useful privileges. This is how to do it. Connect via SSH and login [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve installed MySQL on a machine other than your work station (localhost) and you want to use the MYSQL GUI tools to administer the server then you&#8217;ll need to grant remote acccess on the root account (or another account that has useful privileges. This is how to do it.</p>
<p>Connect via SSH and login to mysql&#8230;</p>
<pre name="code" class="php">
# mysql -u root -p

// now grant access for the root account
mysql > GRANT USAGE ON *.* to root@'%' IDENTIFIED BY '[password]';
mysql > FLUSH PRIVILEGES;
</pre>
<p>Change [password] to whatever the password is for the root account and include the single quotes (&#8216;). The % sign means it will accept connections from this account on all IP addresses. You could if you wanted, choose a specific IP here.</p>
<p>You&#8217;ll now be able to login remotely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kevinbradwick.co.uk/2010/01/grant-remote-access-to-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
