Mediatomb auf mysql Datenbank umstellen

So könnt ihr Mediatomb auf eine Mysql Datenbank umstellen:

Benutzer und Datenbank anlegen, Schema importieren und in der Config Datei einstellen.

mysql -u root -p 
mysql> create user 'mediatomb'@'localhost' identified by 'PASSWORT';
mysql> create user 'mediatomb'@'%' identified by 'PASSWORT';
mysql> grant all on mediatomb.* to 'mediatomb'@'localhost';
mysql> grant all on mediatomb.* to 'mediatomb'@'%';
mysql> create database mediatomb;
mysql> quit

mysql mediatomb -u mediatomb -p < /usr/share/mediatomb/mysql.sql

/etc/init.d/mediatomb restart

nano /etc/mediatomb/config.xml

<mysql enabled="yes">
  <host>localhost</host>
  <username>mediatomb</username>
  <database>mediatomb</database>
  <password>PASSWORT</password>
</mysql>

Kommentar verfassen

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

Nach oben scrollen