• 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.

Resolved Upgrade 18.0.62 to 18.0.64 fails

godfather21

Basic Pleskian
Server operating system version
Centos 7.9
Plesk version and microupdate number
18.0.62
Hello,

today i tried to update to 18.0.64 and i received the following message

Running Transaction Check
Fatal error during packages installation: [u'ERROR with transaction check vs depsolve:', 'python36-PyYAML is needed by plesk-modsecurity-configurator-18.0-2.centos.7+p18.0.62.2+t240718.0615.noarch', 'python36-PyYAML is needed by plesk-service-node-utilities-18.0-2.centos.7+p18.0.62.2+t240718.0615.x86_64']
YumRPMCheckError: [u'ERROR with transaction check vs depsolve:', 'python36-PyYAML is needed by plesk-modsecurity-configurator-18.0-2.centos.7+p18.0.62.2+t240718.0615.noarch', 'python36-PyYAML is needed by plesk-service-node-utilities-18.0-2.centos.7+p18.0.62.2+t240718.0615.x86_64']

How can this be solved?
 
Hello @godfather21

The package python36-PyYAML is expected to be installed on a CentOS server. This package is usually installed alongside the general python36 package.
For instance, here is an example from a fresh CentOS 7 server:
Code:
# rpm -qi $(rpm -qa | grep 'python36-PyYAML')
Name        : python36-PyYAML
Version     : 3.13
Release     : 1.el7
Architecture: x86_64
Install Date: Wed 18 Sep 2024 05:08:37 AM UTC
Group       : Unspecified
Size        : 688437
License     : MIT
Signature   : RSA/SHA256, Thu 07 May 2020 04:12:53 AM UTC, Key ID 6a2faea2352c64e5
Source RPM  : python3-PyYAML-3.13-1.el7.src.rpm
Build Date  : Thu 07 May 2020 03:27:46 AM UTC
Build Host  : buildvm-12.phx2.fedoraproject.org
Relocations : (not relocatable)
Packager    : Fedora Project
Vendor      : Fedora Project
URL         : http://pyyaml.org/
Bug URL     : https://bugz.fedoraproject.org/python3-PyYAML
Summary     : YAML parser and emitter for Python 3.6
Description :
YAML is a data serialization format designed for human readability and
interaction with scripting languages.  PyYAML is a YAML parser and
emitter for Python 3.6.

PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
support, capable extension API, and sensible error messages.  PyYAML
supports standard YAML tags and provides Python-specific tags that
allow to represent an arbitrary Python object.

PyYAML is applicable for a broad range of tasks from complex
configuration files to object serialization and persistance.

Thus, I would recommend installing it manually:
Code:
# yum install python36-PyYAML
Then, try to continue the update.
 
Hello @godfather21

The package python36-PyYAML is expected to be installed on a CentOS server. This package is usually installed alongside the general python36 package.
For instance, here is an example from a fresh CentOS 7 server:
Code:
# rpm -qi $(rpm -qa | grep 'python36-PyYAML')
Name        : python36-PyYAML
Version     : 3.13
Release     : 1.el7
Architecture: x86_64
Install Date: Wed 18 Sep 2024 05:08:37 AM UTC
Group       : Unspecified
Size        : 688437
License     : MIT
Signature   : RSA/SHA256, Thu 07 May 2020 04:12:53 AM UTC, Key ID 6a2faea2352c64e5
Source RPM  : python3-PyYAML-3.13-1.el7.src.rpm
Build Date  : Thu 07 May 2020 03:27:46 AM UTC
Build Host  : buildvm-12.phx2.fedoraproject.org
Relocations : (not relocatable)
Packager    : Fedora Project
Vendor      : Fedora Project
URL         : http://pyyaml.org/
Bug URL     : https://bugz.fedoraproject.org/python3-PyYAML
Summary     : YAML parser and emitter for Python 3.6
Description :
YAML is a data serialization format designed for human readability and
interaction with scripting languages.  PyYAML is a YAML parser and
emitter for Python 3.6.

PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
support, capable extension API, and sensible error messages.  PyYAML
supports standard YAML tags and provides Python-specific tags that
allow to represent an arbitrary Python object.

PyYAML is applicable for a broad range of tasks from complex
configuration files to object serialization and persistance.

Thus, I would recommend installing it manually:
Code:
# yum install python36-PyYAML
Then, try to continue the update.

Thank you very much, this solved the issue and i updated to latest version
 
Back
Top