zoukankan      html  css  js  c++  java
  • RedHat7搭建yum源服务器

    1.新建目录

    # mkdir -p /content/rhel7/x86_64/{isos,dvd}/

    2.上传RedHat安装光盘镜像,上传后的路径为 /content/rhel7/x86_64/isos/rhel-server-7.2-x86_64-dvd.iso

    3.搭建http服务器(nginx),用来网络访问这个yum源

    # rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

    # yum -y install nginx

    4.创建yum源网站(http://content.example.com)配置文件

    # vi /etc/nginx/conf.d/content.example.com.conf

    server {
        listen       80;
        server_name  content.example.com;
    
        access_log   /var/log/nginx/content.example.com.access.log  combined;
    
        location / {
            root                  /content;
            index                 index.html index.htm;
            autoindex             on;
            autoindex_exact_size  off;
            autoindex_localtime   on;
        }
    
        #error_page  404              /404.html;
    
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   /usr/share/nginx/html;
        }
    }

    5.修改网站目录SELinux类型

    # chcon -t public_content_t -R /content/

    6.添加DNS记录到/etc/hosts文件

    # echo "192.168.136.254   content.example.com" >> /etc/hosts

    7.开通防火墙

    # firewall-cmd --permanent --add-service=http

    # firewall-cmd --reload

    8.设置nginx服务开机自启动,并启动nginx服务

    # systemctl enable nginx

    # systemctl start nginx

    9.设置开机自动挂载光盘镜像到/content/rhel7/x86_64/dvd

    # echo "/content/rhel7/x86_64/isos/rhel-server-7.2-x86_64-dvd.iso   /content/rhel7/x86_64/dvd   iso9660   loop,ro   0 0" >> /etc/fstab

    # mount -a

    10.创建repo文件

    # vi /etc/yum.repos.d/rhel-dvd.repo
    本机:

    [rhel-dvd]
    name=rhel dvd
    baseurl=file:///content/rhel7/x86_64/dvd
    gpgcheck=0
    enable=1

    局域网内其他服务器:

    [rhel-dvd]
    name=remote copy of dvd
    baseurl=http://content.example.com/rhel7/x86_64/dvd
    gpgcheck=0
    enabled=1

    11.生成repo cache,用来测试新yum源是否生效

    # yum makecache

  • 相关阅读:
    解决C#程序只允许运行一个实例的几种方法详解
    C# static const和readonly区别
    c# string.format和tostring()
    DataTable与实体类互相转换
    java switch语句 要点注意
    java 运算符&表达式
    java数据类型(大小等),变量定义,各进制书写方法
    Java标识符(Identifier)(关键字和保留字)
    关于美剧《越狱》
    一些四六级的事
  • 原文地址:https://www.cnblogs.com/edward2013/p/5020113.html
Copyright © 2011-2022 走看看