• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

BakupAgent

S

SimonSchmitz

Guest
DBI connect('dbname=psa;host=localhost','admin',...) failed: Client does not support authentication protocol requested by server; consider upgrading MySQL client at /opt/psa/PMM/agents/shared/Db/DbiBackend.pm line 43

from dotdeb
mysql server 5.0.32
mysql common 5.0.32
mysql client 5.0.32
 
Update MySQL Client

I had a similar problem with MySQL4.1 after updating Plesk. I tried all the tricks like changing the MySQL Admin user's password to the old style, adding old_passwords = 1 in my.cnf etc. but these did not work for me (CentOS 3.6 / Plesk 8.1).

Eventually I decided to try and update the Perl MySQL client.

After lots of digging and frustration I found 2 web pages that helped:
http://dev.mysql.com/doc/refman/5.0/en/perl-installation.html
http://www.arcknowledge.com/gmane.comp.db.mysql.documentation/2005-06/msg00003.html

I've never really messed about with Perl and it's libraries here so use the solution below with caution/backup/etc.

When logged in as root:

shell> perl -MCPAN -e shell
cpan> o conf makepl_arg "--testpassword=rootpassword"
cpan> install DBD::mysql

You may have to do a force install:

cpan> force install DBD::mysql

Obviously you must replace "rootpassword" above with the password of the MySQL root user.

Hope this helps someone.
 
Back
Top