当前位置:   article > 正文

配置内网yum源_内网环境配置yum源

内网环境配置yum源

因安全保密的需求,一般生产服务器并不能访问外网,这样就需要构建内网的yum源

1、下载插件

yum -y install wget yum-utils createrepo

createrepo:用于生成yum源各软件之间的依赖索引。
yum-utils:安装后可使用 yumdownloader 命令下载所需软件包。
reposync:Reposync用于将远程yum存储库同步到本地,使用yum检索包的目录

2、配置yum源

下载阿里源

curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo

查看配置好的网络源id

yum repolist

yum1.png

3、将yum源拉到本地服务器上

建立目录

mkdir  /yum

拉取yum源到本地

base

reposync -r base -p /yum

 

yum2.png

 

epel

reposync -r epel -p /yum

yum3.png

extras

reposync -r extras -p /yum

yum4.png

 

reposync命令参数

-c [file]    指定配置文件运行(默认配置文件是 /etc/yum.conf )
-q    静谧运行
-v    显示详细操作
-h    获取帮助
-b    尝试使用最佳的软件包版本
-C    只从系统缓存中运行,不更新缓存
-R [min]    最大命令等待时间
-y    所有回答都是 yes
-x [package]    排除哪些包
-n repoid=[]    只下载最新的包,相同的跳过
-p    指定下载路径
--delete    删除已不在仓库中的本地软件包

生成索引依赖

需要用到createrepo,没有的话需要使用yum下载

base

createrepo /yum/base

image2023-6-26_16-58-39.png

 epel

createrepo /yum/epel

image2023-6-26_17-5-9.png

 extras

createrepo /yum/extras

image2023-6-26_17-8-44.png

updates

createrepo /yum/updates

202306271687867408289003.jpg

4、配置yum源的url地址

选择nginx配置yum源的共享目录下面需要在内网的其他主机上配置yum文件,保证能连接到yum源上

  1. ]# vim /nginx/conf/vhosts/yum.conf
  2. server {
  3. listen 18200;
  4. server_name localhost;
  5. location / {
  6. root /yum; ##yum源主目录
  7. autoindex off;
  8. autoindex_exact_size off;
  9. autoindex_localtime on;
  10. charset utf-8;
  11. index index.html index.htm;
  12. }
  13. }
  14. ]# /nginx/sbin/nginx -s reload

下面需要在内网的其他主机上配置yum文件,保证能连接到yum源上

  1. ##CentOS-Base.repo文件,配置base,extras,updates源的相关参数
  2. ]# vim /etc/yum.repos.d/CentOS-Base.repo
  3. [base] ##base源
  4. name=CentOS-$releasever
  5. enabled=1
  6. failovermethod=priority
  7. baseurl=http://172.25.230.47:18200/base/ ##base源url路径
  8. gpgcheck=1
  9. [updates] ##updates源
  10. name=CentOS-$releasever
  11. enabled=1
  12. failovermethod=priority
  13. baseurl=http://172.25.230.47:18200/updates/ ##updates源url路径
  14. gpgcheck=1
  15. [extras] ##extras源
  16. name=CentOS-$releasever
  17. enabled=1
  18. failovermethod=priority
  19. baseurl=http://172.25.230.47:18200/extras/ ##extras源url路径
  20. gpgcheck=1
  21. ##epel.repo文件,配置epel源
  22. ]# vim /etc/yum.repos.d/epel.repo
  23. [epel]
  24. name=Extra Packages for Enterprise Linux 7 - $basearch
  25. enabled=1
  26. failovermethod=priority
  27. baseurl=http://172.25.230.47:18200/epel/ ##epel源url路径
  28. gpgcheck=0
  29. ##epel.repo文件,配置epel源
  30. ]# vim /etc/yum.repos.d/epel.repo
  31. [epel]
  32. name=Extra Packages for Enterprise Linux 7 - $basearch
  33. enabled=1
  34. failovermethod=priority
  35. baseurl=http://172.25.230.47:18200/epel/ ##epel源url路径
  36. gpgcheck=0

重建yum缓存

yum clean all

yum makecache

image2023-6-26_22-36-16.png

测试yum安装

image2023-6-27_12-24-15.png

 

 远程yum源同步脚本,通过设置计划任务执行

  1. #!/bin/bash
  2. yumdir=/yum
  3. yumlog=/yum/yumsync.log
  4. yumsour=(base centos-sclo-rh centos-sclo-sclo epel extras updates)
  5. for i in ${yumsour[*]};do
  6. reposync -r $i -n repoid=[] -p $yumdir
  7. if [ $? -eq 0 ];then
  8. echo "[`date +%F_%H:%M:%d`] success: $i source sync" | tee -a $yumlog
  9. else
  10. echo "[`date +%F_%H:%M:%d`] error: $i source sync failed" | tee -a $yumlog
  11. fi
  12. done

yumsync.sh

欢迎访问个人技术博客,有各种关于linux技术,中间件,数据库,应用等文章的分享,还有其他的人文文章,放松心情,可以点击右侧分类来查找相关的内容,也可以在留言本里给我留言交流技术:

OPSZHN运维技术分享博客 - 享受每一天

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/168571
推荐阅读
相关标签
  

闽ICP备14008679号