本地yum源部署记录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了本地yum源部署记录相关的知识,希望对你有一定的参考价值。

 

由于IDC的一些服务器没有外网,不能对外访问。所以打算部署一套内网的yum源环境,以供内网服务器使用。以下简单记录下操作过程:

1)下载centos6.9和centos7.3的镜像,并挂载
[[email protected] ~]# wget http://mirrors.163.com/centos/6.9/isos/x86_64/CentOS-6.9-x86_64-bin-DVD1.iso
[[email protected] ~]# wget http://mirrors.163.com/centos/7.3.1611/isos/x86_64/CentOS-7-x86_64-DVD-1611.iso
[[email protected] ~]# mount -o loop -t iso9660 CentOS-6.9-x86_64-bin-DVD1.iso  /mnt
[[email protected] ~]# mount -o loop -t iso9660 CentOS-7-x86_64-DVD-1611.iso  /opt/aa

[[email protected] ~]# ls /mnt/
CentOS_BuildTag  images                    repodata                       RPM-GPG-KEY-CentOS-Testing-6
EFI              isolinux                  RPM-GPG-KEY-CentOS-6           TRANS.TBL
EULA             Packages                  RPM-GPG-KEY-CentOS-Debug-6
GPL              RELEASE-NOTES-en-US.html  RPM-GPG-KEY-CentOS-Security-6

[[email protected] ~]# ls /opt/aa/
CentOS_BuildTag  EULA  images    LiveOS    repodata              RPM-GPG-KEY-CentOS-Testing-7
EFI              GPL   isolinux  Packages  RPM-GPG-KEY-CentOS-7  TRANS.TBL

2)部署nginx
[[email protected] ~]# yum install -y pcre pcre-devel openssl openssl-devel gcc
[[email protected] ~]# groupadd -r nginx
[[email protected] ~]# useradd -r -g nginx -s /bin/false -M nginx 
[[email protected] ~]# cd /usr/loca/src
[[email protected] src]# wget http://nginx.org/download/nginx-1.8.0.tar.gz
[[email protected] src]# tar -zxvf nginx-1.8.0.tar.gz
[[email protected] src]# cd nginx-1.8.0
[[email protected] nginx-1.8.0]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_ssl_module --with-http_flv_module --with-http_stub_status_module --with-http_gzip_static_module --with-pcre 
[[email protected] src]# make && make install

[[email protected] ~]# cat /data/nginx/conf/vhosts/yum.conf 
server {
    listen 80;
    server_name localhost;
    index index.html index.php index.htm;

    access_log  /data/nginx/logs/access.log main;
    error_log  /data/nginx/logs/error.log;

    location /{
    root /data/centos;
    autoindex on;
    autoindex_exact_size  off;           
    autoindex_localtime on;
    }

  }

[[email protected] ~]# mkdir -p /data/centos/6/os/x86_64/6/
[[email protected] ~]# mkdir -p /data/centos/7/os/x86_64/7/
[[email protected] ~]# cp -r /mnt/* /data/centos/6/os/x86_64/6/
[[email protected] ~]# cp -r /opt/aa/* /data/centos/7/os/x86_64/7/

[[email protected] ~]# /data/nginx/sbin/nginx -t
[[email protected] ~]# /data/nginx/sbin/nginx -s reload

访问

技术分享

技术分享

然后配置yum源.下面的192.168.1.240是yum源部署机的ip

[[email protected] ~]# cat centos6_yum.repo 
[base]
name=bkjk repo
baseurl=http://192.168.1.240/6/os/x86_64/6/
gpgcheck=0
enabled=1
[updates]
name=bkjk update
baseurl=http://192.168.1.240/6/os/x86_64/6/
gpgcheck=0
enabled=1

[[email protected] ~]# cat centos7_yum.repo 
[base]
name=bkjk repo
baseurl=http://192.168.1.240/7/os/x86_64/7/
gpgcheck=0
enabled=1
[updates]
name=bkjk update
baseurl=http://192.168.1.240/7/os/x86_64/7/
gpgcheck=0
enabled=1

将上面的centos6或centos7的yum源文件放到客户机的/etc/yum.repos.d/目录下,然后执行下面两条命令即可:
# mv CentOS-Base.repo CentOS-Base.repo.bak
# yum clean all

以上是关于本地yum源部署记录的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本之一键部署yum本地源兼yum阿里源,再也不用为程序的下载安装烦扰!

常用的shell脚本之一键部署yum本地源

shell脚本------一键部署yum源仓库(本地yum源和在线yum源)

FTP方式部署本地yum源

centos7安装部署本地局域网yum源

全方位 一键部署yum源 shell