搭建YUM服务

一、基础YUM服务搭建

1. 搭建web服务

可以安装ftp、httpd、nginx或tengine等服务来实现。我这我安装的是httpd服务。

  1. 安装过程
[root@idc-test01 ~]# cat /etc/centos-release
CentOS Linux release 7.4.1708 (Core)
[root@idc-test01 ~]# yum install httpd
[root@idc-test01 ~]# vim /etc/httpd/conf.d/welcome.conf 

    Options +Indexes
    ErrorDocument 403 /.noindex.html

[root@idc-test01 ~]# vim /etc/httpd/conf.d/autoindex.conf
IndexOptions FancyIndexing HTMLTable VersionSort NameWidth=*
[root@idc-test01 ~]# touch /var/www/html/testtesttesttesttesttesttestsetettest.rpm
[root@idc-test01 ~]# systemctl enable httpd
[root@idc-test01 ~]# systemctl restart httpd
  1. 测试是否可用
    通过浏览器查看web服务下面的文件。

2. 同步YUM源

使用rsync同步公网的YUM源,这里我选的是清华的YUM源。

想要同步其他一些官方的YUM源,也要对方支持rsync才能支持同步,很多的YUM源并不支持rsync。所以有的文章介绍使用reposync同步,然后再执行createrepo。在找不到可以用来同步YUM的rsync服务时,可以使用这种办法。这里我不做过多介绍。

[root@idc-test01 ~]# mkdir /var/www/html/centos
[root@idc-test01 ~]# rsync -avzH --delete --bwlimit 102400 --delay-updates rsync://mirrors.tuna.tsinghua.edu.cn/centos/ /var/www/html/centos/
+==================================================+
|               Tsinghua University                |
|          -= Open Source Mirror Site =-           |
+--------------------------------------------------+
|   Welcome to Tsinghua Open Source Mirror Site.   |
|                                                  |
|   This mirror is also available on HTTP.         |
|   HTTP  [https://mirrors.tuna.tsinghua.edu.cn]   |
|   RSYNC [rsync://mirrors.tuna.tsinghua.edu.cn]   |
|                                                  |
|   If you have any issues, please contact us      |
|   via GitHub @ https://github.com/tuna/issues    |
|   or IRC at #tuna on freenode                    |
|   or Fishroom at https://fishroom.tuna.moe/      |
|                                                  |
|   Supported by                                   |
|      Tsinghua Information Technology Center      |
|   Maintained by                                  |
|      Tsinghua University TUNA Association        |
|   Service Provided by                            |
|      nanomirrors                                 |
|                                                  |
+==================================================+

 Note: This service is provided with a modified 
 version of rsync. For detailed information, please 
 visit: https://github.com/tuna/rsync

receiving file list ... 

3. 客户端测试

  1. 先通过web查看是否能找到相应的文件列表

  1. 配置本地YUM源
    参照 https://mirrors.tuna.tsinghua.edu.cn/help/centos/ 进行配置。只需要将mirrors.tuna.tsinghua.edu.cn替换成自己的webip地址或web主机名。源的名字可以更改。
[root@idc-test01 ~]# cat /etc/yum.repos.d/myyum.repo
[base]
name=CentOS-$releasever - Base
baseurl=https://192.168.150.130/centos/$releasever/os/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#released updates
[updates]
name=CentOS-$releasever - Updates
baseurl=https://192.168.150.130/centos/$releasever/updates/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras
baseurl=https://192.168.150.130/centos/$releasever/extras/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus
baseurl=https://192.168.150.130/centos/$releasever/centosplus/$basearch/
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
  1. 安装一个软件
[root@idc-test01 ~]# yum clean all
[root@idc-test01 ~]# yum makecache
[root@idc-test01 ~]# yum install lrzsz

二、自定义YUM服务搭建

1. 自定义YUM源

  1. 创建目录
mkdir -p /var/www/html/idc/centos/{6,7}/x86_64/RPMS
  1. 放入rpm包
[root@idc-test01 ~]# touch /var/www/html/idc/centos/{6,7}/x86_64/RPMS/test.rpm
  1. 创建仓库
    最好创建的repodata目录与RPMS目录在同一个文件夹下
[root@idc-test01 ~]# yum install createrepo
[root@idc-test01 ~]# createrepo --update /var/www/html/idc/centos/6/x86_64/
[root@idc-test01 ~]# createrepo --update /var/www/html/idc/centos/7/x86_64/
[root@idc-test01 ~]# ls /var/www/html/idc/centos/6/x86_64/
repodata  RPMS
[root@idc-test01 ~]# ls /var/www/html/idc/centos/7/x86_64/
repodata  RPMS

2. 自定义YUM分组信息

  1. 编写分组信息
  
   组的ID,非数字  
   组的名字  
   组的描述  
   是否预安装,true或者false  
   是否可见,true或者false  
   zh  #仅在某个语系的安装界面中显示,可选项  
     
      软件包1  
      软件包2  
      软件包3  
     
    

......
    
   分类的名字,非数字  
   将显示在左侧列表里  
   将显示在下面的描述栏里  
     
    组1的ID  
    组2的ID  
     
    
  

例子:

[root@idc-test01 ~]# cat /var/www/html/idc/centos/7/idc-group.xml


  
   monitor
   monitor
   False
   True
    
      falcon-agent
      ganglia-gmond
      ganglia-gmond-python
    
  
  
   base-vr
   base-vr
   False
   True
    
      glog
      glog-devel
      gmp-devel
      gflags-devel
      mpfr-devel
      glew-devel
      freeglut-devel
    
  

  1. 创建分组仓库
[root@idc-test01 ~]# createrepo -v -g /var/www/html/idc/centos/7/idc-group.xml /var/www/html/idc/centos/7/x86_64/

4. 客户端测试

  1. 关于YUM的一些变量

$arch

作用:标识cpu的架构,如i386,i486,i586等
默认取值:默认根据cpu架构自动取值
设置方法:
在/etc/yum/vars/arch文件写入一个值,这个值就是这个变量的值(优先级高)

$basearch

作用:标识cpu的基本架构。例如i486和i586等使用一个基本架构i386,AMD64和Intel64有一个基本的架构x86_64。
默认取值:默认根据cpu架构自动取值
设置方法:在/etc/yum/vars/basearch文件写入一个值,这个值就是这个变量的值(优先级高)

$releasever

作用:标识操作系统的版本号。
默认取值:先查找/etc/yum.conf配置文件中distroverpkg配置的value,然后取得value对应的rpm包名,最后获取到这个rpm包的release版本号就是这个变量的值(如果是centos系统,默认情况下distroverpkg的value为centos-release,再取centos-release这个包的release号)
设置方法:在/etc/yum/vars/releasever文件写入一个值,这个值就是这个变量的值(优先级高)

$YUM0-9

可以传入内核参数,这样就可以搭建基于内核版本的YUM源。

作用:用户在系统中定义的环境变量,可以在yum中使用。
默认取值:无
设置方法:export YUM0="$(uname -r)"
  1. 配置yum源
[idc-tool]
name=idc-tool
baseurl=http://192.168.150.130/idc/centos/$releasever/$basearch
gpgcheck=0
enabled=1

[idc-driver]
name=idc-driver
baseurl=http://192.168.150.130/idc/driver/$YUM0
gpgcheck=0
enabled=1
  1. 基本操作
yum clean all
yum makecache
yum install idc-gather
yum reinstall idc-gather
yum list |grep idc
yum list installed |grep idc
yum grouplist

5. 备注

  1. 客户端YUM源的配置路径

也就是repo文件中baseurl的路径,该路径最终要找的是repodata目录下的文件。其实repodata相当于yum的目录信息。如果找不到,那么客户端yum将不能使用。

你可能感兴趣的:(搭建YUM服务)