Centos 下建立本地软件仓库-同步官方YUM源

前端之家收集整理的这篇文章主要介绍了Centos 下建立本地软件仓库-同步官方YUM源前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

@H_502_1@

@H_502_1@

1)安装httpd

@H_502_1@

yum install httpd

@H_502_1@

2)安装yum-utils 和 createrepo,其中yum-utils包含reposync命令

@H_502_1@

yum install yum-utils createrepo

@H_502_1@

3)执行如下命令,将所有文件下载到指定路径。其中xxx在*.repo文件内第一行的中括号内(可以用yum repolist列出),表示包的名称;dest_dir代表存放路径;参数--source表示同时下载*.src.rpm文件

@H_502_1@

reposync -r xxx -p <dest_dir> --source

@H_502_1@

4)将dest_dir路径挂载到/var/www/html/下@H_502_1@

@H_502_1@

  ln -s <dest_dir> /var/www/html

@H_502_1@

5)在客户端,修改/etc/yum.repo.d/CentOS-Base.repo文件内的mirrorlist或者baseurl中的主机地址为http服务器的ip地址

@H_502_1@

6)在客户端,执行测试

yum clean all

  yum makecache

猜你在找的CentOS相关文章