centos7搭建自己的yum源

Posted juandx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

以上是关于centos7搭建自己的yum源的主要内容,如果未能解决你的问题,请参考以下文章

centos7搭建自己的聊天服务器rocket.chat

在Centos7上搭建局域网的yum源仓库

在centos7中如何搭建局域网yum源仓库

CentOS7下的YUM源服务器搭建详解,过程写的很详细(转)

centos7.5利用yum缓存搭建本地源

centos7 LAMP+Discuz搭建自己的论坛