<div class="gmail_quote">On Thu, Sep 20, 2012 at 8:51 PM, Worik Stanton <span dir="ltr"><<a href="mailto:worik.stanton@gmail.com" target="_blank">worik.stanton@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
[snip]<br>
<div class="im">><br>
> Need a bit more info.<br>
><br>
> a) You stated your authentication password was "mythtv".<br>
>     Is this a sanitized value?<br>
>     Is the actual passwod you used the same as the<br>
>     password in       /home/mythtv/.mythtv/mysql.txt  ?<br>
<br>
</div>Did I state that?</blockquote><div><br>Yes, you did. The command you issued was:<br>'grant all on mythconverg.* to mythtv@"192.168.1.%" identified by "mythtv";'<br><br>If the user 'mythtv@"192.168.1.%"' doesn't already exist, then that command will create the user with the password specified by the "identified by" clause. So I think the issue you have is caused by the frontend now trying to connect with this new user, but the wrong (old) password. Either change the password for the mysql user or change the password specified in /home/mythtv/.mythtv/mysql.txt.<br>
<br><br>
</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">mysql> select Host, User from user;<br>
</div>+-------------+------------------+<br>
| Host        | User             |<br>
+-------------+------------------+<br>
| %           | mythtv           |<br>
| 127.0.0.1   | root             |<br>
| 192.168.1.% | mythtv           |<br>
| cardamom    | root             |<br>
| localhost   | debian-sys-maint |<br>
| localhost   | mythtv           |<br>
| localhost   | root             |<br>
+-------------+------------------+<br></blockquote><br>Notice that there are several mysql users. A frontend running on the server would connect using mysql@localhost. A frontend running somewhere else on the network would connect using 'mythtv@"192.168.1.%"'. You've set these users up with different passwords.<br>
<br>Cheers,<br>Steve<br></div>