<?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>experimental &#187; user</title>
	<atom:link href="http://www.tajidyakub.com/tag/user/feed" rel="self" type="application/rss+xml" />
	<link>http://www.tajidyakub.com</link>
	<description>Experience the Experiment</description>
	<lastBuildDate>Sat, 10 Oct 2009 19:32:38 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding MySQL User</title>
		<link>http://www.tajidyakub.com/web-database/adding-mysql-user-2008-06-26.html</link>
		<comments>http://www.tajidyakub.com/web-database/adding-mysql-user-2008-06-26.html#comments</comments>
		<pubDate>Thu, 26 Jun 2008 16:56:27 +0000</pubDate>
		<dc:creator>Tajid Yakub</dc:creator>
				<category><![CDATA[Web Database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://tajidyakub.com/?p=5</guid>
		<description><![CDATA[This one from MySQL Docs;


mysql --user=root mysql -p

Insert your MySQL root password, it will jump you to mysql database (keeping user account information);


mysql&#62; GRANT ALL PRIVILEGES ON *.* TO &#039;username&#039;@&#039;localhost&#039;
-&#62;     IDENTIFIED BY &#039;some_pass&#039; WITH GRANT OPTION;
mysql&#62; GRANT ALL PRIVILEGES ON *.* TO &#039;username&#039;@&#039;%&#039;
-&#62;     IDENTIFIED BY &#039;some_pass&#039; WITH [...]]]></description>
			<content:encoded><![CDATA[<p>This one from <a title="Adding User MySQL" href="http://dev.mysql.com/doc/refman/5.0/en/adding-users.html" target="_blank">MySQL Docs</a>;</p>
<pre class="brush: bash">

mysql --user=root mysql -p
</pre>
<p>Insert your MySQL root password, it will jump you to mysql database (keeping user account information);</p>
<pre class="brush: bash">

mysql&gt; GRANT ALL PRIVILEGES ON *.* TO &#039;username&#039;@&#039;localhost&#039;
-&gt;     IDENTIFIED BY &#039;some_pass&#039; WITH GRANT OPTION;
mysql&gt; GRANT ALL PRIVILEGES ON *.* TO &#039;username&#039;@&#039;%&#039;
-&gt;     IDENTIFIED BY &#039;some_pass&#039; WITH GRANT OPTION;
</pre>
<p>This is when you want the spesific user to have all access to all database from anywhere (username@%)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tajidyakub.com/web-database/adding-mysql-user-2008-06-26.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
