[SOLVED] HTTPS Error 404 - Not Found Trying other mirror-RHEL7
HTTPS Error 404 - Not Found Trying other mirror-RHEL7
Error: This is the example for rt repository error.
https://cdn.redhat.com/content/eus/rhel/server/7/7Server/x86_64/rt/debug/repodata/repomd.xml: [Errno 14] HTTPS Error 404 - Not Found Trying other mirror.
Solution:
This is due to some repository are disabled form Redhat and this needs to be disabled in our OS also using below command.
Repository like beta, satellite, fastrack and Real Time are gives error. Use below command to disable them according to your error.
Step1- Enable all repository
# subscription-manager repos --enable="*"
Step2- Disable repository which are giving error.
# subscription-manager repos --disable="*beta*"
# subscription-manager repos --disable="*satellite*"
# subscription-manager repos --disable="*fastrack*"
# subscription-manager repos --disable="*rt*"
Step3-Clean yum repository.
# mv /etc/yum.repos.d/* /tmp/
# yum clean all
Step4- Check for packages
#yum list all
# yum list <Package Name>*
# yum list pango*
Comments
Post a Comment