XBMC: Difference between revisions

From www.ReeltoReel.nl Wiki
Jump to navigation Jump to search
(New page: 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.us...)
 
No edit summary
Line 1: Line 1:
== XBMCMYTHTV script: ==
How to make your XBOX connect to the MythTV MySQL database:
How to make your XBOX connect to the MythTV MySQL database:



Revision as of 14:16, 1 October 2007

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.