<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
<blockquote type="cite"><font color="black"
 face="Verdana,Arial,Helvetica" size="2"><font color="black"
 face="Verdana,Arial,Helvetica" size="2"><font color="#660066">&gt; I'm
using Fedora7. <br>
&gt; <br>
&gt; I want it to use 127.0.0.1 because sometimes I may plug into the <br>
&gt; network and grab an IP from a dhcp server and sometimes I won't. I
  <br>
&gt; thought using the loopback would be the way to go. I don't want to
  <br>
&gt; access the computer from anywhere else on the lan. <br>
  </font> <br>
Nope. 127.0.0.1 always refers to the machine you are running on. <br>
  <br>
To talk to another machine, on the same lan or on another continent you
  <br>
must use the IP of that machine's network interface (or some router or <br>
gateway that knows how to get to that machine). <br>
  <br>
Trying to talk to 127.0.0.1 will not get you outside the bowels of that
  <br>
machine. <br>
  <br>
beww </font></font></blockquote>
<br>
Did nobody actually read his question?&nbsp; It sounds (to me) like he has a
backend and frontend on the laptop and he wants the laptop frontend to
connect to the laptop backend.&nbsp; Does the backend not listen on the
loopback address?&nbsp; It looks like on my box is does (netstat reports
mythbackend is listening on 0.0.0.0:6543 and 0.0.0.0:6544).<br>
<br>
Thom:&nbsp; Check to make sure the backend is actually running and listening
on the loopback address.&nbsp; If it is running, you can test if it is
responding by accessing the status page - wget localhost:6544 should
give you a quick check.&nbsp; Make sure you have the database completely
populated.&nbsp; <br>
</body>
</html>