You're probably running into the pre-4.1 vs 4.1 password lengths issue <span style="font-family: monospace;">(<a href="http://dev.mysql.com/doc/mysql/en/old-client.html">http://dev.mysql.com/doc/mysql/en/old-client.html</a>
).</span><code class="option"></code>The
easiest thing to do is to set the password for the pdns mysql user to
pre-4.1 length, like: (in mysql db) update user set password =
OLD_PASSWORD( "password" ) where user = "pdns user" (and possibly host
= "host used for that user if multiple instances of that user"). Don't
forget to "flush privileges" after.<br>
<br>
The other option is that if you're not depending on mysqld to continue
working with other mysql-4.1-aware apps, you can also start mysqld with
the option <code class="option">--old-passwords</code> <br>
<br>
This will use the old pre-4.1 authentication, which your mysql client
lib is probably using. Mind you, if you've got other apps using mysql
too, it *might* break them, so be ready to switch back in a hurry :)<br>
<br>
<br>
On 9/16/05, <b class="gmail_sendername">bert hubert</b> <<a href="mailto:bert.hubert@netherlabs.nl">bert.hubert@netherlabs.nl</a>> wrote:<div><span class="gmail_quote"></span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Fri, Sep 16, 2005 at 03:04:19PM -0500, Matt Kollross wrote:<br>> i'm using powerdns with mysql 4.1.14.  i've tried both launch=gmysql<br>> and myql and i'm getting a "Sep 16 15:40:30 gmysql Connection failed:
<br>> Unable to connect to database: Client does not support authentication<br>> protocol requested by server; consider upgrading MySQL client".  Is<br>> there any known issues with the newest mysql and powerdns.  If so
<br>> what version of mysql is compatable?<br><br>If you recompile powerdns yourself this problem goes away.<br><br>I'll see if I can compile the next version of PowerDNS against the latest<br>MySQL.<br><br>--<br><a href="http://www.PowerDNS.com">
http://www.PowerDNS.com</a>      Open source, database driven DNS Software<br><a href="http://netherlabs.nl">http://netherlabs.nl</a>              Open
and Closed source services<br>_______________________________________________<br>Pdns-users mailing list<br><a href="mailto:Pdns-users@mailman.powerdns.com">Pdns-users@mailman.powerdns.com</a><br><a href="http://mailman.powerdns.com/mailman/listinfo/pdns-users">
http://mailman.powerdns.com/mailman/listinfo/pdns-users</a><br></blockquote></div><br>