diff options
author | woro <woro@e10066b5-e1e2-0310-b819-94efdf66514b> | 2008-12-19 17:38:33 +0000 |
---|---|---|
committer | woro <woro@e10066b5-e1e2-0310-b819-94efdf66514b> | 2008-12-19 17:38:33 +0000 |
commit | d4f378664b1a82adf85bf0750e5521dcb8874c81 (patch) | |
tree | 64bf6384651d1b5f7dd49dbc09d2f21ef968bfa7 | |
parent | cd0b265ff3f13267c1c0df51c3afc2d79422d64c (diff) | |
download | vdr-plugin-muggle-d4f378664b1a82adf85bf0750e5521dcb8874c81.tar.gz vdr-plugin-muggle-d4f378664b1a82adf85bf0750e5521dcb8874c81.tar.bz2 |
README.mysql was incomplete
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@1219 e10066b5-e1e2-0310-b819-94efdf66514b
-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 |