• Debian 11 has reached its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.81 is 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.

Issue Precheck error when trying to upgrade MariaDB

fabio.florencio

New Pleskian
Server operating system version
Ubuntu 24.04.5 LTS
Plesk version and microupdate number
Plesk Obsidian 18.0.81 Web Pro Edition
Hi, there.

I'm trying to upgrade MariaDB from 11.8.9 to 12.3, but in the pre-upgrade checks I get this error:

1789730014119.png

1789730064011.png

Have you experienced this?

Thanks
 
Hi, there.

I'm trying to upgrade MariaDB from 11.8.9 to 12.3, but in the pre-upgrade checks I get this error:
~~~~
Have you experienced this?
Currently we run the same server OS / same Plesk release (albeit we have Web Host Editions) as you do now and we are running MariaDB 12.3.3. without any issues (upgrading or usage)

However, we did the upgrades to MariaDB 12.3.3 whilst running the previous Plesk release 18.0.80, although that shouldn't (in theory) matter as both of these Plesk releases do support MariaDB 12.3.*

Exactly how & specifically where, did you run the upgrade from? Post everything in English, even the screen grabs (to receive more comments from others).
 
Dumb question but did you tried doing this is a private window? iirc it gets a lot of the information from your browser session (which is funny since it should grab it from the host itself).

Can also check to see what Plesk thinks the current version is:

Bash:
MYSQL_PWD="$(cat /etc/psa/.psa.shadow)" mysqlcheck -uadmin --all-databases --check-upgrade
plesk db -e "SELECT id, host, port, type, server_version FROM DatabaseServers;"
mysql -V

Worst comes to worst, just upgrade it manually by following the instructions at https://support.plesk.com/hc/en-us/articles/12388091703703-How-to-upgrade-MariaDB-on-Plesk-for-Linux

Bash:
MYSQL_PWD="$(cat /etc/psa/.psa.shadow)" mysqldump -uadmin --all-databases --routines --triggers --single-transaction > /root/all-databases.sql
systemctl stop mariadb

curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | bash -s -- --mariadb-server-version=12.3
apt update
apt install -y mariadb-server

systemctl start mariadb
MYSQL_PWD="$(cat /etc/psa/.psa.shadow)" mysql_upgrade -uadmin
systemctl restart mariadb

plesk bin service_node --update local
plesk sbin packagemng -sdf
 
Hello, thank you for reporting the issue is already known.
It is planned to be fixed in the nearest Plesk update, approximately next week. (tracked under PPPM-15531)
 
Currently we run the same server OS / same Plesk release (albeit we have Web Host Editions) as you do now and we are running MariaDB 12.3.3. without any issues (upgrading or usage)

However, we did the upgrades to MariaDB 12.3.3 whilst running the previous Plesk release 18.0.80, although that shouldn't (in theory) matter as both of these Plesk releases do support MariaDB 12.3.*

Exactly how & specifically where, did you run the upgrade from? Post everything in English, even the screen grabs (to receive more comments from others).
with 18.0.80 update to 12.3 was ok, the problem seems only at 18.0.81 here
 
Back
Top