標籤:http yum源
1、更換阿里源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo |
#下載阿里的yum源
#如出現無法找到下載包,需要安裝 epel
yum install epel-release yum clean all yum makecache |
2、啟用 yum 緩衝
vim /etc/yum.conf 修改 keepcache=1 |
3、下載yum包
yum update mkdir /home/download find /var/cache/yum/ -name ‘*.rpm‘ |xargs -i cp -f {} /home/download cd /home/download createrepo . |
4、建立yum伺服器
#啟動http服務 service httpd restart chkconfig httpd on #拷貝download檔案夾到/var/www/html/目錄下 cp /home/download/* /var/www/html/ |
網站訪問http://IP/download/,如能開啟檔案清單,則成功
5、安裝伺服器repo配置
cd /var/yum.repo.d/ rm -rf CentOS-* vim /etc/yum.repos.d/Centos.repo [Centos6] name=CentOS-$releasever - My baseurl=http://192.168.31.114/download/ gpgcheck=1 enabled=1 gpgkey=http://192.168.31.114/download #192.168.31.114是yum原始伺服器IP yum clean all yum makecache yum update rm -rf /var/yum.repo.d/CentOS-* |
本文出自 “郭少龍” 部落格,請務必保留此出處http://shaolong.blog.51cto.com/6634276/1910064
http方式搭建本地yum原始伺服器