Everything I did to get my Knoppmyth setup to be almost perfect

Wednesday, May 16, 2007

Mythtv Front End on Ubuntu

I'll have to write this up into a proper post, but here is what I did to get a frontend up and running on Ubuntu:

sudo apt-get install mythtv-frontend

[On the knoppmyth box...]

vi /etc/mysql/my.cnf

Comment out this line by putting a # at the start of it
bind-address= 127.0.0.1

Connect to the database

mysql -u mythtv -h 10.0.0.8 -D mythconverg -p

enter in the password (mythtv by default)

insert into settings values('MasterServerIP','10.0.0.8','phill-ubuntu');

insert into settings values('BackendServerIP','10.0.0.8','phill-ubuntu');

update settings set data='10.0.0.8' where data='127.0.0.1';

quit

Then it all worked

No comments: