<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Setting up the database for mailserver administration</title>
	<atom:link href="http://diymacserver.com/installing-the-mailserver/the-basic-mailserver/setting-up-the-database-for-mailserver-administration/feed/" rel="self" type="application/rss+xml" />
	<link>http://diymacserver.com</link>
	<description></description>
	<lastBuildDate>Wed, 02 May 2012 02:04:43 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Richard</title>
		<link>http://diymacserver.com/installing-the-mailserver/the-basic-mailserver/setting-up-the-database-for-mailserver-administration/comment-page-1/#comment-527</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Fri, 14 Dec 2007 07:16:32 +0000</pubDate>
		<guid isPermaLink="false">http://diymacserver.com/installing-the-mailserver//setting-up-the-database-for-mailserver-administration/#comment-527</guid>
		<description>It looks like a copy paste error. Please try each line separate or type them over manually. The last line worked so you don&#039;t need to do that one again.</description>
		<content:encoded><![CDATA[<p>It looks like a copy paste error. Please try each line separate or type them over manually. The last line worked so you don&#8217;t need to do that one again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://diymacserver.com/installing-the-mailserver/the-basic-mailserver/setting-up-the-database-for-mailserver-administration/comment-page-1/#comment-525</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Thu, 13 Dec 2007 20:46:47 +0000</pubDate>
		<guid isPermaLink="false">http://diymacserver.com/installing-the-mailserver//setting-up-the-database-for-mailserver-administration/#comment-525</guid>
		<description>I&#039;m stuck...

I can&#039;t seem to add postfix user and password and postfix admin user and password without ERROR 1062 or 1064.  I&#039;ve tried a number of variations on your syntax above without success.  (The only part of your documentation I&#039;ve tried to change is the password).  I have not &quot;Setup the rights for the just created users&quot; for any users I might have indirectly added to the mysql database.  What follows are my first couple of attempts?  How do I know if I&#039;ve added any users?  Can I clear these missteps and try again?  Thanks in advance...   

mysql&gt; USE mysql;â€¨INSERT INTO user (Host, User, Password) VALUESâ€¨Â  (&#039;localhost&#039;,&#039;postfix&#039;,password(&#039;myinsertedpassword&#039;));â€¨INSERT INTO db (Host, Db, User, Select_priv) VALUESâ€¨Â  (&#039;localhost&#039;,&#039;postfix&#039;,&#039;postfix&#039;,&#039;Y&#039;);
Database changed
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;â€¨INSERT INTO user (Host, User, Password) VALUESâ€¨Â  (&#039;localhost&#039;,&#039;postfix&#039;,pa&#039; at line 1
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;â€¨INSERT INTO db (Host, Db, User, Select_priv) VALUESâ€¨Â  (&#039;localhost&#039;,&#039;postfi&#039; at line 1
mysql&gt; USE mysql;
Database changed
mysql&gt; INSERT INTO user (Host, User, Password) VALUES
    -&gt;   (&#039;localhost&#039;,&#039;postfix&#039;,password(&#039;postfixpassword&#039;));
ERROR 1062 (23000): Duplicate entry &#039;localhost-postfix&#039; for key 1
mysql&gt; INSERT INTO db (Host, Db, User, Select_priv) VALUES
    -&gt;   (&#039;localhost&#039;,&#039;postfix&#039;,&#039;postfix&#039;,&#039;Y&#039;);
Query OK, 1 row affected (0.00 sec)</description>
		<content:encoded><![CDATA[<p>I&#8217;m stuck&#8230;</p>
<p>I can&#8217;t seem to add postfix user and password and postfix admin user and password without ERROR 1062 or 1064.  I&#8217;ve tried a number of variations on your syntax above without success.  (The only part of your documentation I&#8217;ve tried to change is the password).  I have not &#8220;Setup the rights for the just created users&#8221; for any users I might have indirectly added to the mysql database.  What follows are my first couple of attempts?  How do I know if I&#8217;ve added any users?  Can I clear these missteps and try again?  Thanks in advance&#8230;   </p>
<p>mysql&gt; USE mysql;â€¨INSERT INTO user (Host, User, Password) VALUESâ€¨Â  (&#8216;localhost&#8217;,'postfix&#8217;,password(&#8216;myinsertedpassword&#8217;));â€¨INSERT INTO db (Host, Db, User, Select_priv) VALUESâ€¨Â  (&#8216;localhost&#8217;,'postfix&#8217;,'postfix&#8217;,'Y&#8217;);<br />
Database changed<br />
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;â€¨INSERT INTO user (Host, User, Password) VALUESâ€¨Â  (&#8216;localhost&#8217;,'postfix&#8217;,pa&#8217; at line 1<br />
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8216;â€¨INSERT INTO db (Host, Db, User, Select_priv) VALUESâ€¨Â  (&#8216;localhost&#8217;,'postfi&#8217; at line 1<br />
mysql&gt; USE mysql;<br />
Database changed<br />
mysql&gt; INSERT INTO user (Host, User, Password) VALUES<br />
    -&gt;   (&#8216;localhost&#8217;,'postfix&#8217;,password(&#8216;postfixpassword&#8217;));<br />
ERROR 1062 (23000): Duplicate entry &#8216;localhost-postfix&#8217; for key 1<br />
mysql&gt; INSERT INTO db (Host, Db, User, Select_priv) VALUES<br />
    -&gt;   (&#8216;localhost&#8217;,'postfix&#8217;,'postfix&#8217;,'Y&#8217;);<br />
Query OK, 1 row affected (0.00 sec)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://diymacserver.com/installing-the-mailserver/the-basic-mailserver/setting-up-the-database-for-mailserver-administration/comment-page-1/#comment-397</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Tue, 06 Nov 2007 19:23:22 +0000</pubDate>
		<guid isPermaLink="false">http://diymacserver.com/installing-the-mailserver//setting-up-the-database-for-mailserver-administration/#comment-397</guid>
		<description>Marc, the create table scripts have been updated. Thanks for mentioning this.</description>
		<content:encoded><![CDATA[<p>Marc, the create table scripts have been updated. Thanks for mentioning this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://diymacserver.com/installing-the-mailserver/the-basic-mailserver/setting-up-the-database-for-mailserver-administration/comment-page-1/#comment-169</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Fri, 24 Aug 2007 07:50:43 +0000</pubDate>
		<guid isPermaLink="false">http://diymacserver.com/installing-the-mailserver//setting-up-the-database-for-mailserver-administration/#comment-169</guid>
		<description>sorry, I omitted the version of MySQL I am using. It is 5.0.45

cheers,
Marc</description>
		<content:encoded><![CDATA[<p>sorry, I omitted the version of MySQL I am using. It is 5.0.45</p>
<p>cheers,<br />
Marc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://diymacserver.com/installing-the-mailserver/the-basic-mailserver/setting-up-the-database-for-mailserver-administration/comment-page-1/#comment-168</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Fri, 24 Aug 2007 07:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://diymacserver.com/installing-the-mailserver//setting-up-the-database-for-mailserver-administration/#comment-168</guid>
		<description>first and foremost: Thank you so much for a great website! Very informative...

now a small prob I ran into: when creating the tables, I get this warning:

Warning (Code 1287): &#039;TYPE=storage_engine&#039; is deprecated; use &#039;ENGINE=storage_engine&#039; instead

should all occurences of TYPE= in your code be replaced by ENGINE= ? Or does that have some unwanted side-effects? I have created the tables like you indicated, with TYPE=. Can that be changed later, is that desirable, and if yes: how?

thanks for you help,
Marc</description>
		<content:encoded><![CDATA[<p>first and foremost: Thank you so much for a great website! Very informative&#8230;</p>
<p>now a small prob I ran into: when creating the tables, I get this warning:</p>
<p>Warning (Code 1287): &#8216;TYPE=storage_engine&#8217; is deprecated; use &#8216;ENGINE=storage_engine&#8217; instead</p>
<p>should all occurences of TYPE= in your code be replaced by ENGINE= ? Or does that have some unwanted side-effects? I have created the tables like you indicated, with TYPE=. Can that be changed later, is that desirable, and if yes: how?</p>
<p>thanks for you help,<br />
Marc</p>
]]></content:encoded>
	</item>
</channel>
</rss>

