XBMC

From www.ReeltoReel.nl Wiki
Revision as of 14:16, 1 October 2007 by Root (talk | contribs)
Jump to navigation Jump to search

XBMCMYTHTV script:

How to make your XBOX connect to the MythTV MySQL database:

method #1)

it doesn't seem to work if you use the PHPmyadmin interface, so do it just hardcore from the CLI:

UPDATE mysql.user 
SET password=OLD_PASSWORD('mythtv') 
WHERE user='mythtv' 
AND host='someip'; 

=

Method #2)

This allows the xbox to connect remotely to the server running the mythtv backend. Run it on the backend in mysql command line.

GRANT ALL PRIVILEGES ON *.* TO root@"192.168.1.60" identified by "MyPassword"; 

The IP is that of the XBOX.