Centos6 da yum update yapıldığında aşağıdaki gibi bir hata alınmaktadır. Sebebi Kasım 2020 itibariyle Centos6 desteğinin kaldırılmasıdır.

—————————————-
Loaded plugins: fastestmirror, refresh-packagekit, security
Setting up Update Process
Determining fastest mirrors
YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
Eg. Invalid release/repo/arch combination/
removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/6/base/mirrorlist.txt
Error: Cannot find a valid baseurl for repo: base

—————————————–
Aşağıdaki bir kaç basit adımı uygulayarak yeni kurduğunuz Centos6 işletim sisteminizi güncelleyebilirsiniz.

1. /etc/yum.repos.d/ klasörünü açın.

# cd /etc/yum.repos.d/

2. Orjinal dosyanızı yedeklemek faydalı olacaktır.

# cp CentOS-Base.repo CentOS-Base.repo.Orjinal

3. Centos-Base.repo dosyanızı vi ya da nano ile açın:

# nano CentOS-Base.repo

4. Aşağıdaki konfigurasyon ile var olanı değiştirin;

Değişecek kısımlar:

[base]
[updates]
[extras]

Yukarıdaki kısımları aşağıdakiler ile değiştirin:

————————————————————–

[base]
name=CentOS-$releasever – Base
# mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra
# baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
baseurl=https://vault.centos.org/6.10/os/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

# released updates
[updates]
name=CentOS-$releasever – Updates
# mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates&infra=$infra
# baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
baseurl=https://vault.centos.org/6.10/updates/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

# additional packages that may be useful
[extras]
name=CentOS-$releasever – Extras
# mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras&infra=$infra
# baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
baseurl=https://vault.centos.org/6.10/extras/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

————————————————————–

5. yum cachi temizleyin

# yum clean all

6. Evet hepsi bu kadar, şimdi tekrardan yum update komutunu çalıştırabilir ve Centos6 nızı güncelleyebilirsiniz. 😉

# yum update