天天看點

centos7搭建自己的yum源

 http://www.wenbin.cf/post/37/

1. 安裝nginx,createrepo

yum install nginx -y
yum install createrepo -y
      

  

2. 修改nginx配置檔案,/etc/nginx/nginx.conf

location / {
            autoindex on;
        }
      

  重新開機nginx, systemctl restart nginx

3. 在nginx根目錄建立檔案夾

mkdir -p /usr/share/nginx/html/CentOS_72_1511_Yum/Aliyun/version_7.2/64bit
      

  

4. 準備同步阿裡雲的源,base,updates,extras,epel, 確定/etc/yum.repos.d/ 下隻有下面這兩個repo

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

wget -O /etc/yum.repos.d/CentOS-epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
      

  

5. 開始同步下載下傳包

reposync -p /usr/share/nginx/html/CentOS_72_1511_Yum/Aliyun/version_7.2/64bit/
      

  

6. 建倉

createrepo -p /usr/share/nginx/html/CentOS_72_1511_Yum/Aliyun/version_7.2/64bit/base/Packages
createrepo -p /usr/share/nginx/html/CentOS_72_1511_Yum/Aliyun/version_7.2/64bit/extras/Packages
createrepo -p /usr/share/nginx/html/CentOS_72_1511_Yum/Aliyun/version_7.2/64bit/updates/Packages
createrepo -p /usr/share/nginx/html/CentOS_72_1511_Yum/Aliyun/version_7.2/64bit/epel
      

  

7. crontab定時同步

crontab -e
1 2 * * * /usr/bin/reposync -np /usr/share/nginx/html/CentOS_72_1511_Yum/Aliyun/version_7.2/64bit/
      

  

參考自:

http://blog.csdn.net/u012402276/article/details/53158682