centos7 搭建http网络源
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7 搭建http网络源相关的知识,希望对你有一定的参考价值。
存放yum包的服务器:172.22.10.237
测试服务器:172.22.10.234
172.22.10.237需要安装http或者其他web工具,可以打开web页面即可;
yum install httpd httpd-devel -y
还需要安装 createrepo 工具,用于创建本地源:
yum install createrepo* -yum
创建apache用户和apache用户组
例:如果将包放在 /var/www/html/centos/ 文件夹下,
cd /var/www/html/
createrepo centos/
这样会在centos文件夹里生成一个repodata文件夹;
完成以上工作后,将yum的包上传到centos文件夹里,为测试效果明显,
可以将少量的包上传过去,便于对比;
客户端将 /etc/yum.repos.d/ 下的所有文件转移备份到其他地方,
为测试效果明显,不受其它 .repo 文件影响;
创建 http.repo :
[base]
name="CentOS7 HTTP YUM"
baseurl=http://172.22.10.237/centos/
gpgcheck=0
enabled=1
[updates]
name="CentOS7 HTTP YUM"
baseurl=http://172.22.10.237/centos/
gpgcheck=0
enabled=1
清空yum缓存: yum clean all
重启http服务;
查看软件源: yum repolist (yum repolist all)
查看yum源仓库里面的安装包: yum list
*可能需要给 http.repo 执行权限;
以上是关于centos7 搭建http网络源的主要内容,如果未能解决你的问题,请参考以下文章