[mythtvnz] Frontend on another computer
Robert Fisher
mythtvnz@lists.linuxnut.co.nz
Sun, 15 Jan 2006 10:39:43 +1300
On Fri, 13 Jan 2006 8:53 am, Duncan Kennington wrote:
> Check your settings table in the database -
>
> SELECT * FROM settings WHERE value IN ('BackendServerIP', 'MasterServerIP')
>
> BackendServerIP 192.168.0.90 frontend1
> BackendServerIP 192.168.0.90 frontend2
> MasterServerIP 192.168.0.90 NULL
>
> The MasterServer IP is global - the hostname is NULL. Each Frontend should
> have an entry corresponding to the backend (including the frontend running
> on the backend).
>
> Good luck!
Thanks.
At the moment mine looks like this.....
+-----------------+--------------+----------+
| value | data | hostname |
+-----------------+--------------+----------+
| BackendServerIP | 192.168.10.3 | beast |
| BackendServerIP | 127.0.0.1 | mythtv |
| MasterServerIP | 127.0.0.1 | NULL |
+-----------------+--------------+----------+
Should I change it to be..............
+-----------------+--------------+----------+
| value | data | hostname |
+-----------------+--------------+----------+
| BackendServerIP | 192.168.10.27 | mythtv |
| BackendServerIP | 192.168.10.3 | beast |
| MasterServerIP | 192.168.10.27 | NULL |
+-----------------+--------------+----------+