diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | README.mysql | 15 |
2 files changed, 15 insertions, 1 deletions
@@ -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 |