Hello Perumal, Sivaprakasam
Welcome to Microsoft Q&A Platform, thanks for posting your query here.
Adding to above response from Marshaljs, based on the error details shared the SSL certificate might have expired or is no longer valid, which is causing the error while trying to download rpms.
You can try the following steps to resolve this issue:
- Check if the system date and time are correct. Incorrect system date and time can cause SSL errors. To check the date and time, run the
date
command.
- Update the
ca-certificates
package by running the command sudo yum update ca-certificates
.
- Clear the yum cache by running the command
sudo yum clean all
.
- Try to install the required package again by running the command
sudo yum install <package-name>
.
If the above steps don't resolve the issue, you can try disabling the SSL verification temporarily by adding sslverify=false
in /etc/yum.conf
file, but this is not recommended as it can compromise the security of the system.
Hope the above mentioned troubleshooting steps helps in resolving your issue.
If you need further help on this, tag me in a comment.
If the suggested response helped you resolve your issue, please 'Accept as answer', so that it can help others in the community looking for help on similar topics.