summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--README.mysql15
2 files changed, 15 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 9a4fc2b..1079207 100644
--- a/HISTORY
+++ b/HISTORY
@@ -366,3 +366,4 @@ XXXXXXXXXX: Version 0.0.8-ALPHA
found by Thomas Balke
- DisplayMode is now configurable, found by Thomas Balke. This defines between
how many different types of information the first line toggles in the player.
+- README.mysql was incomplete
diff --git a/README.mysql b/README.mysql
index d28ff1a..e454155 100644
--- a/README.mysql
+++ b/README.mysql
@@ -66,7 +66,20 @@ NOTE: The GiantDisc web interface only works with remote MySQL.
If you already have a MySQL server running in your network (e.g. as a basis
for a webserver) or want to access the music database with other programs
-(e.g. the GiantDisc web interface) you may be interested in using
+(e.g. the GiantDisc web interface) you may be interested in using MySql
+as a server.
+
+If you want to create a new data base:
+
+- First define a user e.g. vdr: From the shell prompt start "mysql -u root"
+ using the password for root (this is not login root but mysql user root)
+
+- now enter those commands:
+ create user vdr;
+ create database GiantDisc;
+ grant all on GiantDisc.* to vdr;
+ commit;
+ quit;
\section config MUGGLE CONFIGURATION