<br><br><div><span class="gmail_quote">On 9/15/05, <b class="gmail_sendername"><a href="mailto:hydrateordie@earthlink.net">hydrateordie@earthlink.net</a></b> <<a href="mailto:hydrateordie@earthlink.net">hydrateordie@earthlink.net
</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Riiiiight... I'm sorry... I meant MythTV, but I said TiVo... (Like<br>
Kleenex for Tissue)<br><br>That should have gone:<br><br>> Hey, I just moved my MythTV box into my dorm with me and now<br>> that I'm hosting the backend on a network on a static IP<br>> I changed the IP address from
<a href="http://127.0.0.1">127.0.0.1</a> on the setup,<br>> but then it lost all of my configuration settings. Is there<br>> a way to recover these settings?<br>> Thanks!<br>><br>> KG<br><br><br>_______________________________________________
<br>mythtv-users mailing list<br><a href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br><a href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
</a><br><br><br></blockquote></div><br>
<br>
For mysql : <a href="http://dev.mysql.com/doc/mysql/en/grant.html">http://dev.mysql.com/doc/mysql/en/grant.html</a><br>
<br>
<ul type="disc">
<li>
<p>
<span class="bold"><strong>Database level</strong></span>
</p>
<p>
Database privileges apply to all objects in a given
database. These privileges are stored in the
<code class="literal">mysql.db</code> and
<code class="literal">mysql.host</code> tables. <code class="literal">GRANT ALL
ON <em class="replaceable"><code>db_name</code></em>.*</code> and
<code class="literal">REVOKE ALL ON
<em class="replaceable"><code>db_name</code></em>.*</code> grant and
revoke only database privileges.
</p></li>
</ul>
<br>
EG:<br>
<br>
GRANT ALL on mythconverg TO 'mythtv'@'192.168.%' IDENTIFIED BY mythtv<br>
<br>
<br>
Also, did you update your /etc/hosts? That could fix it right up
by telling it that your machine name is the same on <a href="http://192.168.0.100">192.168.0.100</a> as
<a href="http://127.0.0.1">127.0.0.1</a><br>
<br>
IE:<br>
<a href="http://127.0.0.1">127.0.0.1</a> localhost<br>
<a href="http://192.168.0.100">192.168.0.100</a> mythtv<br>
<br>
If neither of those fix it, try this: <a href="http://www.mythtv.org/docs/mythtv-HOWTO.html#toc22.15">http://www.mythtv.org/docs/mythtv-HOWTO.html#toc22.15</a><br>
<br>