summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 280522e)
raw | patch | inline | side by side (parent: 280522e)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 7 Mar 2008 14:21:00 +0000 (14:21 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 7 Mar 2008 14:21:00 +0000 (14:21 +0000) |
-The database name is 'gomon' not 'golog'. This is hard coded in the syslog plugin.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9440 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9440 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/contrib/mysql/golog/golog.sql | patch | blob | history |
index 0461fdc48e191f0c86ac93e938482def37268d3b..d5b5f6b32b7d42cb99f5988cd3e76722e0b9f599 100644 (file)
-create database golog;
-use golog;
+create database gomon;
+use gomon;
create table golog (
time_stamp DATETIME,
matched_ts DATETIME
);
-GRANT INSERT,SELECT,DELETE ON golog.golog TO gomon@localhost IDENTIFIED BY 'somemysqlpass';
+GRANT INSERT,SELECT,DELETE ON gomon.golog TO gomon@localhost IDENTIFIED BY 'somemysqlpass';