<html><body><div style="font-family: arial,helvetica,sans-serif; font-size: 12pt; color: #000000"><div>>> I've upgraded from 0.25 to 0.27, it's mostly working, but after recent updates, the upstart job no longer connects to the backend.<br></div><div><br></div><div>Below is a copy of my upstart script that I use:<br></div><div><br></div><div>cat mythbackend.conf <br># MythTV Backend service<br><br>description "MythTV Backend"<br>author "Mario Limonciello <superm1 AT ubuntu DOT com>"<br><br>start on (local-filesystems and net-device-up IFACE!=lo and started udev-finish and started mysql)<br>stop on runlevel [016]<br><br>#expect fork<br>respawn<br>respawn limit 2 3600<br><br>pre-start script <br> [ -x /usr/sbin/mysqld ] || exit 0<br> for i in `seq 1 30` ; do<br> /usr/bin/mysqladmin --defaults-file=/etc/mysql/debian.cnf ping && exit 0<br> sleep .5<br> done<br>end script<br><br>script<br> test -f /etc/default/locale && . /etc/default/locale || true<br> LANG=$LANG env HOME=/root /usr/local/bin/mythbackend --logpath /var/log/mythtv --syslog local7<br>end script</div></div></body></html>