<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"><channel><title>Tech-Recipes - Latest Comments in Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://tech-recipes.disqus.com/</link><description>Cookbook of Tech Tutorials</description><language>en</language><lastBuildDate>Tue, 11 Nov 2008 08:21:34 -0000</lastBuildDate><item><title>Re: Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://www.tech-recipes.com/rx/191/create_a_mysql_user_account/#comment-3677526</link><description>Hi friend. thank u very much. your sample code working good.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Murali</dc:creator><pubDate>Tue, 11 Nov 2008 08:21:34 -0000</pubDate></item><item><title>Re: Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://www.tech-recipes.com/rx/191/create_a_mysql_user_account/#comment-2767112</link><description>&amp;lt;ul id="quote"&amp;gt;&amp;lt;h6&amp;gt;Kenny Vadas wrote:&amp;lt;/h6&amp;gt;This is very nice.. and good... Kenny Vadas&amp;lt;/ul&amp;gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 16 Jun 2005 10:29:06 -0000</pubDate></item><item><title>Re: Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://www.tech-recipes.com/rx/191/create_a_mysql_user_account/#comment-2767111</link><description>This is very nice.. and good... Kenny Vadas</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Kenny Vadas</dc:creator><pubDate>Sat, 02 Apr 2005 04:01:15 -0000</pubDate></item><item><title>Re: Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://www.tech-recipes.com/rx/191/create_a_mysql_user_account/#comment-2767110</link><description>&amp;lt;ul id="quote"&amp;gt;&amp;lt;h6&amp;gt;Anonymous wrote:&amp;lt;/h6&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul id="quote"&amp;gt;&amp;lt;h6&amp;gt;Anonymous wrote:&amp;lt;/h6&amp;gt;Don't forget to "flush privileges" afterwards.&amp;lt;/ul&amp;gt;&lt;br&gt;&lt;br&gt;I read that flushing privileges is only neccessary if you use insert instead of grant:&lt;br&gt;&lt;br&gt;"The reason for using FLUSH PRIVILEGES when you create accounts with INSERT is to tell the server to re-read the grant tables. Otherwise, the changes will go unnoticed until you restart the server. With GRANT, FLUSH PRIVILEGES is unnecessary."&lt;br&gt;&lt;br&gt;Quote from &lt;a href="http://dev.mysql.com/doc/mysql/en/Adding_users.html" rel="nofollow"&gt;http://dev.mysql.com/doc/mysql/en/Adding_users.html&lt;/a&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 31 Dec 2004 03:36:05 -0000</pubDate></item><item><title>Re: Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://www.tech-recipes.com/rx/191/create_a_mysql_user_account/#comment-2767109</link><description>&amp;lt;ul id="quote"&amp;gt;&amp;lt;h6&amp;gt;Anonymous wrote:&amp;lt;/h6&amp;gt;Don't forget to "flush privileges" afterwards.&amp;lt;/ul&amp;gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">upender</dc:creator><pubDate>Mon, 11 Oct 2004 02:05:43 -0000</pubDate></item><item><title>Re: Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://www.tech-recipes.com/rx/191/create_a_mysql_user_account/#comment-2767108</link><description>&amp;lt;ul id="quote"&amp;gt;&amp;lt;h6&amp;gt;Anonymous wrote:&amp;lt;/h6&amp;gt;Don't forget to "flush privileges" afterwards.&amp;lt;/ul&amp;gt;&lt;br&gt;&lt;br&gt;I read that flushing privileges is only neccessary if you use insert instead of grant:&lt;br&gt;&lt;br&gt;"The reason for using FLUSH PRIVILEGES when you create accounts with INSERT is to tell the server to re-read the grant tables. Otherwise, the changes will go unnoticed until you restart the server. With GRANT, FLUSH PRIVILEGES is unnecessary."&lt;br&gt;&lt;br&gt;Quote from &lt;a href="http://dev.mysql.com/doc/mysql/en/Adding_users.html" rel="nofollow"&gt;http://dev.mysql.com/doc/mysql/en/Adding_users.html&lt;/a&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 10 Aug 2004 05:57:02 -0000</pubDate></item><item><title>Re: Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://www.tech-recipes.com/rx/191/create_a_mysql_user_account/#comment-2767107</link><description>You can specify the hostname or IP address that is allowed access in place of localhost in this command.  So, if you want to be able to connect from a host named 'workstation' (10.100.15.2), use one of these:&lt;br&gt;&lt;br&gt;grant all on accounts.* to jsmith@workstation identified by 'Secret15';&lt;br&gt;grant all on accounts.* to &lt;a href="mailto:jsmith@10.100.15.2" rel="nofollow"&gt;jsmith@10.100.15.2&lt;/a&gt; identified by 'Secret15';&lt;br&gt;&lt;br&gt;A dubious alternative, one with serious security consequences (you've been warned) is to allow access to jsmith from anywhere:&lt;br&gt;&lt;br&gt;grant all on accounts.* to jsmith@% identified by 'Secret15';&lt;br&gt;&lt;br&gt;In this context, the % symbol is a wildcard permitting access from any host.  An important note - from my experience, it is necessary to create the localhost access control in addition to a specific host or global access control.  If you do not, connections from localhost may not function properly.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">qmchenry</dc:creator><pubDate>Mon, 08 Mar 2004 00:43:18 -0000</pubDate></item><item><title>Re: Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://www.tech-recipes.com/rx/191/create_a_mysql_user_account/#comment-2767106</link><description>grant all on accounts.* to jsmith@localhost identified by 'Secret15';&lt;br&gt;&lt;br&gt;This only work's for the localhost how do i create an account that can be accesd by any ip and not from the same pc of the server ???? 8O</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Warlock</dc:creator><pubDate>Sun, 07 Mar 2004 15:13:39 -0000</pubDate></item><item><title>Re: Create a MySQL user account | MySQL | Tech-Recipes</title><link>http://www.tech-recipes.com/rx/191/create_a_mysql_user_account/#comment-2767105</link><description>Don't forget to "flush privileges" afterwards.</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Wed, 21 Jan 2004 05:35:14 -0000</pubDate></item></channel></rss>