搭建企业内部yum仓库(centos6+centos7+epel源)(centos7搭建yum源仓库服务器)
666
2022-07-18
一,建立一个yum仓库,建立服务端
1,建立一个目录/export/yum/Server2, 拷贝rpm到这个目录
3,安装createrepo[root@localhost Server]# rpm -ivh createrepo-0.4.4-2.fc6.noarch.rpm warning: createrepo-0.4.4-2.fc6.noarch.rpm: Header V3 DSA signature: NOKEY, key ID 37017186Preparing... ########################################### [100%] 1:createrepo ########################################### [100%][root@localhost yum]#
4,执行:[root@localhost Server]# createrepo -v /export/yum/Server1/2158 - libbtctl-0.6.0-9.2.el5.i386.rpm2/2158 - man-pages-cs-0.16-6.noarch.rpm
6,客户端清除yum缓存信息:[root@localhost ~]# yum clean dbcacheLoading "security" pluginLoading "rhnplugin" pluginLoading "installonlyn" pluginThis system is not registered with RHN.RHN support will be disabled.0 cache files removed[root@localhost ~]#
二,建立yum客户端配置文件create a file in /etc/yum.repos.d for your repository文件内容:[tonykorn97]name=tonykorn97 yum serverbaseure=enabled=1gpgcheck=0
更改为就内容为:[tonykorn97]name=tonykorn97 yum serverbaseure=file:///export/yum/Serverenabled=1gpgcheck=0
一样的结果。
发现是baseurl写错成baseure了,更改过来后就可以了。
发表评论
暂时没有评论,来抢沙发吧~