• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Forwarded to devs Warning in system Updates

Nicola

Basic Pleskian
User name: Nicola

TITLE

Warning in system Updates

PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE

Plesk Obsidian
Version 18.0.25 Update #2, last update il 26/Mar/2020 11.43, CentOS Linux 7.7.1908, Mysql 5.7

PROBLEM DESCRIPTION

Hi,
this morning I get this message in plesk "Warning: Information on some packages might not be actual: inconsistencies were detected in the system's package manager database. Please resolve this issue manually."

STEPS TO REPRODUCE

I don't know

ACTUAL RESULT

If I run this command " plesk sbin pum --check" the result is this:
2020-04-07 07:58:09 INFO: pum is called with arguments: ['--check'] Loaded plugins: fastestmirror, langpacks Error: check ['dependencies', 'duplicates', 'obsoletes'] plesk-mysql-server-18.0-2.centos.7+p18.0.17.0+t190721.1104.noarch has missing requires of mariadb-server >= ('0', '5.0.60', None) 2020-04-07 07:58:22 ERROR: Exited with returncode 1. exit status 1

EXPECTED RESULT

There shouldn't be an error because I installed Mysql 5.7

ANY ADDITIONAL INFORMATION



YOUR EXPECTATIONS FROM PLESK SERVICE TEAM


Confirm bug
 
From developer:

This is expected behaviour of PUM - it will refuse to work in case of package system inconsistency. So this is not a bug in a sense that PUM correctly points to the package system inconsistency.

On the other hand, there are real issues with installing MySQL 5.7 on CentOS 7 (PPP-47540 for example).

However, it is still possible to install it and not have broken package dependencies. For example, to install MySQL 5.7 over existing Plesk installation w/ system MariaDB:

# yum localinstall https://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
# rpm -e --nodeps plesk-mysql-server
# yum install mysql-community-server
# systemctl start mysqld.service
# plesk installer update --skip-cleanup
# yum --enablerepo PLESK\* install plesk-mysql-server-community
# plesk installer update
# plesk sbin pum --check
 
Back
Top