Linux搭建基于FTP的YUM服务器

1、挂载光盘

    mount /dev/cdrom /mnt

2、安装VSFTP服务、createrepo软件包

   rpm -ivh vsftpd-2.0.5-24.el5.x86_64.rpm

   rpm -ivh createrepo-0.4.11-3.el5.noarch.rpm 

3、拷贝光盘内容

   cp -a /mnt/* /var/ftp/pub/

4、创建YUM仓库 

  cd /var/ftp/pub/

  createrepo .

  createrepo报错如下的解决办法

  技术分享

  解决方法:

  [root@orcl1 ~]# vi /usr/share/createrepo/genpkgmetadata.py
   #!/usr/bin/python2.4  --修改python -t 为 pthhon2.4 

5、启动FTP服务

   service vsftpd start

   chkconfig vsftpd on

 

 

客户端使用yum源方法:

[root@orcl2 yum.repos.d]# pwd
/etc/yum.repos.d
[root@orcl2 yum.repos.d]# cat local.repo
[Server]
name=Red Hat Enterprise Linux 5
baseurl=ftp://192.168.120.58/pub/Server
enabled=1
gpgcheck=1
gpgkey=ftp://192.168.120.58/pub/RPM-GPG-KEY-redhat-release
[VT]
name=Red Hat Enterprise Linux 5
baseurl=ftp://192.168.120.58/pub/VT
enabled=1
gpgcheck=1
gpgkey=ftp://192.168.120.58/pub/RPM-GPG-KEY-redhat-release
[Cluster]
name=Red Hat Enterprise Linux 5
baseurl=ftp://192.168.120.58/pub/Cluster
enabled=1
gpgcheck=1
gpgkey=ftp://192.168.120.58/pub/RPM-GPG-KEY-redhat-release
[ClusterStorage]
name=Red Hat Enterprise Linux 5
baseurl=ftp://192.168.120.58/pub/ClusterStorage
enabled=1
gpgcheck=1
gpgkey=ftp://192.168.120.58/pub/RPM-GPG-KEY-redhat-release

 

测试 yum list!ok 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。