http方式搭建本地yum源服务器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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源服务器的主要内容,如果未能解决你的问题,请参考以下文章

CentOS6.5搭建本地yum源(http方式) nginx

linux搭建本地YUM源配置详细步骤

Linux-----搭建yum源(本地yum源与在线yum源)

[Linux]CentOS7搭建/配置:YUM仓库/源[本地源/HTTP源/自建源仓库][转]

离线方式搭建本地的nginx yum源

本地局域网yum源搭建-centos/redhat