If you haven't fixed your problem (or for others...) have you tried changing the config line:
Code:
INET_ADDR=`awk '/address/{print$2}' /etc/network/interfaces`
From the output,
Code:
--------------------------------------
Transmission Started !!!
Open your browser at http://:9091
--------------------------------------
it seems you may be using DHCP, so it does not know what your IP address is.

If you know your address, you can just insert it in the config, or you can try something like:
Code:
INET_ADDR=`ifconfig eth0 | grep 'inet addr:' | cut -d: -f2|cut -d' ' -f1`