[bugs] [Bug 974] New - mysql_create.sql dies
bugs@bugs.horde.org
bugs@bugs.horde.org
Mon, 10 Jun 2002 18:06:21 -0300
http://bugs.horde.org/show_bug.cgi?id=974
*** shadow/974 Mon Jun 10 18:06:21 2002
--- shadow/974.tmp.4344 Mon Jun 10 18:06:21 2002
***************
*** 0 ****
--- 1,37 ----
+ Bug#: 974
+ Product: Horde
+ Version: 2.1 Unstable
+ Platform: All Browsers
+ OS/Version: All
+ Status: NEW
+ Resolution:
+ Severity: normal
+ Priority: P3
+ Component: Core
+ Area: BUILD
+ AssignedTo: chuck@horde.org
+ ReportedBy: griff.miller@positron.com
+ URL: http://groups.google.com/groups?hl=en&lr=&safe=off&frame=right&th=81eb538e794781c0&seekm=3CEBDCB3.2020205%40positron.com#link1
+ Cc: griff.miller@positron.com
+ Summary: mysql_create.sql dies
+
+ I am trying to set up the Horde Framework ( http://www.horde.org/ ) against
+ MySQL 3.23.49 on Solaris 2.6 . At one point in the Horde setup instructions,
+ I am supposed to run this command:
+
+ $ mysql --user=root --password=<MySQL-root-passwd> < mysql_create.sql
+
+ It fails with this message:
+
+ ERROR 1133 at line 51: Can't find any matching row in the user table
+
+
+ I fixed this (on a suggestion from a person named Frank Weise) by adding a
+ FLUSH PRIVILEGES; statement before the CREATE DATABASE horde; .
+
+ % diff mysql_create.sql.sav mysql_create.sql
+ 40a41,42
+ > FLUSH PRIVILEGES;
+ >
+
+ FYI