标签:gpg http led 网络 安装 其他 工作 www name
存放yum包的服务器:172.22.10.237172.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 执行权限;
标签:gpg http led 网络 安装 其他 工作 www name
原文地址:http://blog.51cto.com/13577495/2140520