如何实现本地yum源的共享

上一篇关于Linux yum客户端的配置的博客,介绍了如何通过修改本机yum配置文件来访问网络或者本地的yun sever, 本文就来介绍一下,如何把我们的本地RPM包像yum sever一样通过http或ftp网络方式共享出去。

一、准备好发行版光盘,包,元数据
    CentOS-6.8-x86_64-bin-DVD1.iso
二、准备网络服务http(s);ftp
根据netstat -ntl命令执行结果可以看出,80(http),21(ftp)端口都没有显示, 服务还没有配置

[root@centos6 ~]#netstat -ntl
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address               Foreign Address             State      
tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN      
tcp        0      0 0.0.0.0:44496               0.0.0.0:*                   LISTEN      
tcp        0      0 0.0.0.0:22                  0.0.0.0:*                   LISTEN      
tcp        0      0 127.0.0.1:631               0.0.0.0:*                   LISTEN      
tcp        0      0 127.0.0.1:25                0.0.0.0:*                   LISTEN      
tcp        0      0 :::111                      :::*                        LISTEN      
tcp        0      0 :::55028                    :::*                        LISTEN      
tcp        0      0 :::22                       :::*                        LISTEN      
tcp        0      0 ::1:631                     :::*                        LISTEN      
tcp        0      0 ::1:25                      :::*                        LISTEN      

1)配置ftp服务
1.安装vsftpd包

[root@centos6 ~]#yum -y -q install vsftpd         <-- 利用配置过的yum仓库
[root@centos6 ~]#rpm -ql vsftpd
/etc/logrotate.d/vsftpd
/etc/pam.d/vsftpd
/etc/rc.d/init.d/vsftpd                           <-- 服务名称
....中间省略....
/usr/share/man/man8/vsftpd.8.gz
/var/ftp
/var/ftp/pub                                      <-- 共享文件存放路径

2.启动ftp服务
以下两种方法均可

[root@centos6 ~]#/etc/rc.d/init.d/vsftpd start    <-- 路径名
Starting vsftpd for vsftpd:                                [  OK  ]
[root@centos6 ~]#service vsftpd start             <-- service指令
Starting vsftpd for vsftpd:                                [  OK  ]

3.设置开机自启动

[root@centos6 ~]#chkconfig vsftpd on

2)配置http服务
1.安装httpd包

[root@centos6 ~]#yum -y install httpd             <-- 利用配置过的yum仓库
[root@centos6 ~]#rpm -ql httpd
/etc/httpd
....中间省略....
/etc/rc.d/init.d/htcacheclean
/etc/rc.d/init.d/httpd                            <-- 服务名称
....中间省略....
/var/www/html                                     <-- 共享文件存放路径
....后面省略....

2.启动http服务

[root@centos6 ~]#cd /etc/httpd/conf.d/
[root@centos6 conf.d]#mv welcome.conf welcome.conf.bak    <-- 重命名welcome.conf文件,否则通过http访问不到/var/www/html共享文件夹
[root@centos6 ~]#/etc/rc.d/init.d/httpd start             <-- 路径名
Starting httpd:                                            [  OK  ]
[root@centos6 ~]#service httpd start                      <-- service指令
Starting httpd:                                            [  OK  ]

3.设置开机自启动

[root@centos6 ~]#chkconfig httpd on

三、关闭防火墙服务

[root@centos6 ~]#service iptables stop             <-- 关闭服务
[root@centos6 ~]#chkconfig iptables off            <-- 禁止开机启动

四、拷贝目标文件到共享目录
1.ftp服务的共享目录是/var/ftp/pub

[root@centos6 /]#cd /var/ftp/pub
[root@centos6 6]#mkdir 6                           <-- 创建以版本号命名的文件夹
[root@centos6 6]#cp -r /misc/cd/Packages           <-- 从光盘拷贝包文件
[root@centos6 6]#cp -r /misc/cd/repodata           <-- 从光盘拷贝元数据
[root@centos6 6]#ls
Packages  repodata

通过浏览器访问ftp://192.168.196.132,已经可以访问共享文件了            <– 本机IP192.168.196.132

如何实现本地yum源的共享

2.同样方法可以把rpm包拷贝到http服务的共享目录下/var/www/html
还有另外一种方法就是把目录/var/ftp/pub挂载到目录/var/www/html,这样通过http访问/var/www/html相当于访问/var/ftp/pub,我们就省去了重复复制的操作

[root@centos6 ~]#mount /var/ftp/pub /var/www/html -B

通过浏览器访问http://192.168.196.132,已经可以访问共享文件了

如何实现本地yum源的共享

五、yum客户端的配置
1.修改yum配置文件

[root@centos6 ~]#vi /etc/yum.repos.d/centos.repo 
[ftpbase]
name=ftp yum base
baseurl=ftp://192.168.196.132/pub/$releasever     
gpgcheck=0
enabled=1

[httpbase]
name=http yum base
baseurl=http://192.168.196.132/$releasever
gpgcheck=0
enabled=1

2.清理缓存

[root@centos6 ~]#yum clean all
Loaded plugins: fastestmirror, refresh-packagekit, security
Cleaning repos: ftpbase httpbase
Cleaning up Everything
Cleaning up list of fastest mirrors

3.创建缓存

[root@centos6 ~]#yum makecache
Loaded plugins: fastestmirror, refresh-packagekit, security
Determining fastest mirrors
ftpbase                                                                                        | 4.0 kB     00:00     
ftpbase/group_gz                                                                               | 226 kB     00:00     
ftpbase/filelists_db                                                                           | 6.3 MB     00:00     
ftpbase/primary_db                                                                             | 4.7 MB     00:00     
ftpbase/other_db                                                                               | 2.8 MB     00:00     
httpbase                                                                                       | 4.0 kB     00:00     
httpbase/group_gz                                                                              | 226 kB     00:00     
httpbase/filelists_db                                                                          | 6.3 MB     00:00     
httpbase/primary_db                                                                            | 4.7 MB     00:00     
httpbase/other_db                                                                              | 2.8 MB     00:00     
Metadata Cache Created

4.列出yum仓库

[root@centos6 ~]#yum repolist
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
repo id                                                     repo name                                status
ftpbase                                                     ftp yum base                             6,696
httpbase                                                    http yum base 6,696
repolist: 13,392

结果可以看出,网络yum源已经创建成功,可以通过http或者ftp服务访问了

六、第三方的软件仓库的配置
上面是以发行版光盘为rpm包的来源,提供了元数据repodata,假如我们想要分享第三方的软件,就必须使用createrepo命令来生成所需的repodata

[root@centos6 6]#cd /var/ftp/pub/6     <--cd到Package所在目录
[root@centos6 6]#mv repodata /root/    <--移走已有repodata 
[root@centos6 6]#createrepo ./         <--创建元数据
Spawning worker 0 with 3206 pkgs       <--rpm包数小于6696是由于我们只拷贝一张光盘上的rpm包
Workers Finished
Gathering worker results

Saving Primary metadata
Saving file lists metadata
Saving other metadata
Generating sqlite DBs
Sqlite DBs complete
[root@centos6 6]#ls
Packages  repodata

来测试一下yum源

[root@centos6 6]#yum clean all
Loaded plugins: fastestmirror, refresh-packagekit, security
Cleaning repos: ftpbase httpbase
Cleaning up Everything
Cleaning up list of fastest mirrors
[root@centos6 6]#yum makecache
Loaded plugins: fastestmirror, refresh-packagekit, security
Determining fastest mirrors
ftpbase                                                                                     | 2.9 kB     00:00     
ftpbase/filelists_db                                                                        | 3.3 MB     00:00     
ftpbase/primary_db                                                                          | 2.5 MB     00:00     
ftpbase/other_db                                                                            | 1.4 MB     00:00     
httpbase                                                                                    | 2.9 kB     00:00     
httpbase/filelists_db                                                                       | 3.3 MB     00:00     
httpbase/primary_db                                                                         | 2.5 MB     00:00     
httpbase/other_db                                                                           | 1.4 MB     00:00     
Metadata Cache Created
[root@centos6 6]#yum repolist
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
repo id                                                     repo name                           status
ftpbase                                                     ftp yum base                        3,206
httpbase                                                    http yum base 3,206
repolist: 6,412

yum源配置成,而且手动生成的repodata能正确反映rpm包的实际数目了!

原创文章,作者:ffu,如若转载,请注明出处:http://www.178linux.com/78133

(3)
ffuffu
上一篇 2017-06-17
下一篇 2017-06-17

相关推荐

  • Nginx的简单配置和简单实验..

    yum install nginx #安装Nginx,安装包在epel源中 systemctl start nginx.service #启动服务 #实验:配置一个虚拟主机 #先给一个网页文件 ~]#mkdir /data/nginx/vhost1 -pv ~]#vim /data/nginx/vhost1/index.html <h1>Ngin…

    Linux干货 2017-06-19
  • N25-第九周作业

    1、写一个脚本,判断当前系统上所有用户的shell是否为可登录shell(即用户的shell不是/sbin/nologin);分别统计这两类用户的个数;通过字符串比较来实现; #!/bin/bash     echo “可登录类型有有$(awk -F: ‘/[^\<nologin\>…

    Linux干货 2017-03-11
  • 初入马哥教育的感受

    记录来马哥教育的点滴记录及感受。。

    Linux干货 2018-03-26
  • 我的第一篇博客

    2018.3.26 整理

    2018-03-26
  • lvs-keepalived

    keepalived: vrrp协议:Virtual Redundant Routing Protocol        术语:        虚拟路由器:Virtual Router &n…

    Linux干货 2017-05-13
  • 再不自动化就晚啦!优云教你4步打造基于CentOS的产品镜像

    随着Linux程序的增多,软件的安装过程中经常出现如下问题: 1、硬件配置类似或者相同时,批量安装系统和软件,希望实现自动化安装,减少安装时间和人为出错。 2、工程实施人员在不同客户现场进行系统和软件安装(硬件配置不同),由于硬件有差别,不容易实现自动化。 笔者针对以上场景,从提高生产效率,减少误操作的立场,提出如下解决方案,希望能达到抛砖引玉的目的,并能与…

    系统运维 2016-07-16