【日期】2014年4月24日
【平台】Centos 6.5
【工具】httpd
yum-utils
createrepo
【步骤】
1)安装httpd。
yum install httpd
2)安装yum-utils 和 createrepo,其中yum-utils包含reposync命令。
yum install yum-utils createrepo
3)下载相应的*.repo文件,并保存到/etc/yum.repos.d/中;也可以直接把该文件的内容拷贝到yum.conf中。
4)执行如下命令,将所有文件下载到指定路径。其中xxx在*.repo文件内第一行的中括号内,表示包的名称;dest_dir代表存放路径;参数--source表示同时下载*.src.rpm文件。
reposync -r xxx -p <dest_dir> --source
注意:更多参数信息,执行 reposync --help 查看。
5)将dest_dir路径挂载到/var/www/html/下。
ln -s <dest_dir> /var/www/html
6)在客户端,修改/etc/yum.repo.d/CentOS-Base.repo文件内的mirrorlist或者baseurl中的主机地址为http服务器的ip地址。
7)在客户端,执行测试。
yum update
【参考】