CentOS7下同步阿里云CentOS7镜像并自建本地yum仓库

简介: CentOS7下同步阿里云CentOS7镜像并自建本地yum仓库

640.png如上图所示内网10.20.10.191无法访问外网,无法访问外网yum源

针对这种情况可以在能够访问外网的CentOS7服务器10.20.10.93上利用reposync同步阿里云CentOS7镜像并自建本地yum仓库


下面介绍CentOS7下同步阿里云CentOS7镜像并自建本地yum仓库的基本操作步骤


1、在可以通外网的机器上配置阿里云CentOS7镜像源+EPEL镜像源


640.png


1)mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

2)wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

3)wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

注意,如果没有wget命令可以使用curl 命令

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

curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo


2、yum repolist可以查看库标识仓库名称状态


640.png

3、安装yum-utils:reposync同步工具与createrepo:编辑yum库工具


yum install yum-utils createrepo -y


640.png


4、reposync -np /data同步到本地/data目录(当然存储路径可以自行定义)



640.png


需要等待很长一段时间,与网速有关


由于epel的仓库同步需要太长时间,我这里删除了epel-7.repo文件,然后


yum clean all  

再次reposync -np /data


等待同步完成


640.png

640.png


5、创建repo索引

createrepo -po /data/base/ /data/base/
createrepo -po /data/extras/ /data/extras/
createrepo -po /data/updates/ /data/updates/


640.png


6、如果重新同步过仓库后, 可以重新更新


createrepo --update /data/base/
createrepo --update /data/extras/
createrepo --update /data/updates/

640.png

7、部署httpd服务,并修改配置文件

yum install httpd
cd /etc/httpd/conf
cp httpd.conf httpd.conf_default

注释掉119行 #DocumentRoot "/var/www/html",然后加入如下行

DocumentRoot "/data/"
<Directory "/data/">
  Options Indexes FollowSymLinks
  Options Indexes
  AllowOverride All
  Order allow,deny
  IndexOptions Charset=UTF-8
  Allow from all
  Require all granted
</Directory>

640.png

cd /etc/httpd/conf.d/
mv welcome.conf welcome.conf_bak
systemctl start httpd
systemctl enable httpd

640.png

测试Web访问


640.png


8、接下来可以在内网的机器上测试内网yum源服务器


cd /etc/yum.repos.d/
 mv *.repo /home

vi local.repo加入如下内容

[base]
name=CentOS-Base(WalkingCloud)
baseurl=http://10.20.10.93/base
path=/
enabled=1
gpgcheck=0  
[updates]
name=CentOS-Updates(WalkingCloud)
baseurl=http://10.20.10.93/updates
path=/
enabled=1
gpgcheck=0  
[extras]
name=CentOS-Extras(WalkingCloud)
baseurl=http://10.20.10.93/extras
path=/
enabled=1
gpgcheck=0

640.png

yum repolist 可以看到yum源OK

yum install tree -y  

yum install nmap -y


640.png

640.png

附:当然也可以创建定时同步更新的脚本

脚本可以参考https://www.cnblogs.com/lldsn/p/10479493.html这篇博文

640.png



相关文章
|
4月前
|
Linux 虚拟化 数据安全/隐私保护
部署05-VMwareWorkstation中安装CentOS7 Linux操作系统, VMware部署CentOS系统第一步,下载Linux系统,/不要忘, CentOS -7-x86_64-DVD
部署05-VMwareWorkstation中安装CentOS7 Linux操作系统, VMware部署CentOS系统第一步,下载Linux系统,/不要忘, CentOS -7-x86_64-DVD
|
3月前
|
网络协议 Linux
CentOS7 yum安装报错“Could not resolve host: mirrorlist.centos.org;"之解决办法(换源)
CentOS7 yum安装报错“Could not resolve host: mirrorlist.centos.org; Name or service not known“之解决办法(换源)
|
3月前
|
缓存 Linux 网络安全
解决 CentOS 7 官方 yum 仓库无法使用的最佳实践
【8月更文挑战第18天】若 CentOS 7 的官方 YUM 仓库无法使用,可按以下步骤解决: 1. **检查网络连接**: - 确认服务器能正常上网,可通过访问外部网站或网络诊断测试。 - 检查防火墙设置,避免其阻挡 YUM 的网络访问。 2. **检查 YUM 配置**: - 核实 `/etc/yum.repos.d/` 下的 `CentOS-Base.repo` 文件中仓库地址正确无误。 - 确认配置文件内的 `enabled` 选项设为 `1` 以启用仓库。
1533 0
|
3月前
|
Linux
阿里云CentOS数据盘挂载(磁盘扩容)
阿里云CentOS数据盘挂载(磁盘扩容)
231 0
|
4月前
|
弹性计算 安全 Ubuntu
新手3分钟1Panel安装教程,使用阿里云服务器CentOS操作系统
在阿里云CentOS 7.9服务器上安装1Panel面板,包括远程连接ECS、执行安装命令、设置安装目录(默认/opt)、开启20410端口、配置安全入口和用户密码。记得在阿里云安全组中开放20410端口以访问面板。
169 0
新手3分钟1Panel安装教程,使用阿里云服务器CentOS操作系统
|
5月前
|
缓存 Linux Docker
CentOS 7 下安装 Docker 及配置阿里云加速服务
CentOS 7 下安装 Docker 及配置阿里云加速服务
1347 1
|
Web App开发 JavaScript 应用服务中间件
阿里云centos配置nginx和nodejs
今天新买了阿里云,想把网站跑起来,于是记录跑起来的过程 1.购买域名 2.购买解析 3.购买ecs主机 4.ssh登录主机 5.安装vsftpd 6.配置ftp用户、文件夹、权限 7.安装nginx/nodejs 8.
2760 0
|
6天前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第8天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统准备、配置安装源、安装 SQL Server 软件包、运行安装程序、初始化数据库以及配置远程连接。通过这些步骤,您可以顺利地在 CentOS 系统上部署和使用 SQL Server 2019。
|
7天前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第7天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统要求检查与准备、配置安装源、安装 SQL Server 2019、配置 SQL Server 以及数据库初始化(可选)。通过这些步骤,你可以成功安装并初步配置 SQL Server 2019,进行简单的数据库操作。
|
30天前
|
Linux 网络安全 数据安全/隐私保护
Linux系统之Centos7安装cockpit图形管理界面
【10月更文挑战第12天】Linux系统之Centos7安装cockpit图形管理界面
67 1
Linux系统之Centos7安装cockpit图形管理界面

热门文章

最新文章