[MKDoc-commit] [1.8] Added MySQL command for db creation for 4.1.x

chris at mkdoc.demon.co.uk chris at mkdoc.demon.co.uk
Tue Sep 13 13:48:14 BST 2005


Log Message:
-----------
[1.8] Added MySQL command for db creation for 4.1.x

Modified Files:
--------------
    mkd:
        INSTALL.TXT

-------------- next part --------------
Index: INSTALL.TXT
===================================================================
RCS file: /var/spool/cvs/mkd/INSTALL.TXT,v
retrieving revision 1.8
retrieving revision 1.9
diff -LINSTALL.TXT -LINSTALL.TXT -u -r1.8 -r1.9
--- INSTALL.TXT
+++ INSTALL.TXT
@@ -78,6 +78,14 @@
 
     flush privileges;
 
+For mysql-4.1.x the db line needs to have two extra entries:
+
+    INSERT INTO db (Host, Db, User, Select_priv, Insert_priv,
+    Update_priv, Delete_priv, Create_priv,Drop_priv, Grant_priv,
+    References_priv, Index_priv, Alter_priv, Create_tmp_table_priv,
+    Lock_tables_priv) VALUES ('localhost', 'mkdoc1', 'mkdoc1', 'Y', 'Y',
+    'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y');
+
 If you need to use a non-local mysql server, then your configuration
 will be different - Consult your mysql documentation.
 


More information about the MKDoc-commit mailing list