• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Please beaware of a breaking change in the REST API on the next Plesk release (18.0.62).
    Starting from Plesk Obsidian 18.0.62, requests to REST API containing the Content-Type header with a media-type directive other than “application/json” will result in the HTTP “415 Unsupported Media Type” client error response code. Read more here

Resolved Failed to check system configuration - Yum utility finished with errors. Installation may fail

The issue is likely caused by that Python version. Instead, create a symbolic link to the 2.x version that should also be on your system.

1) Ensure that Python 2.7.5 is installed
Code:
# rpm -q python-2.7.5
python-2.7.5-90.el7.x86_64
2) Proceed only if python 2.7 is found in step (1). Change the symlink from python3 to python 2.7.
Code:
# mv /bin/python{,.orig}; ln -s /bin/python2.7 /usr/bin/python
3) Retry yum as you did before.
 
Back
Top