CentOS 6下载遇到SSL证书问题解决方法 2022-02-24 Website News 暂无评论 1783 次阅读 CentOS 6官方的yum源已经关闭了,VPS主机商的模板如果没有做过更新,就会出现做yum update的时候出现SSL证书或者无法找到源的问题, ```csharp wget returns "Unable to establish SSL connection" ``` 之前的解决方法就是修改源地址未vulta的,但是今天遇到一个问题是CentOS中的openssl过期了,导致无法更新,最后的解决方法就是找到还能支持HTTP的源来完成OENSSL的更新,官方给出了目前支持HTTP和HTTPS的源服务器。 ```csharp https://www.centos.org/download/mirrors/ ``` 我最后找了国内的网易163的源,里面有支持HTTP的源。 另外看资料阿里也有 ```csharp http://mirrors.bfsu.edu.cn/centos-vault/ http://mirrors.aliyun.com/centos-vault/ http://mirrors.163.com/centos-vault/ ``` ```csharp # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to pick mirrors that are updated to and # geographically close to the client. You should use this for CentOS updates # unless you are manually picking other mirrors. # # If the mirrorlist= does not work for you, as a fall back you can try the # remarked out baseurl= line instead. # # [base] name=CentOS-$releasever - Base #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os&infra=$infra baseurl=http://mirrors.163.com/centos-vault/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://mirrors.163.com/centos-vault/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://mirrors.163.com/centos-vault/6.10/extras/$basearch/ gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #additional packages that extend functionality of existing packages [centosplus] name=CentOS-$releasever - Plus #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus&infra=$infra baseurl=http://mirrors.163.com/centos-vault/6.10/centosplus/$basearch/ gpgcheck=1 enabled=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 #contrib - packages by Centos Users [contrib] name=CentOS-$releasever - Contrib #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib&infra=$infra baseurl=http://mirrors.163.com/centos-vault/6.10/contrib/$basearch/ gpgcheck=1 enabled=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6 ``` 标签: SSL, centos, centos 6, openssl 本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭