CentOS 7 rsync+nginx实现公网yum源
1、实验描述
镜像同步公网 yum 源上游 yum 源必须要支持 rsync 协议,否则不能使用 rsync 进行同步。CentOS 7.6 默认已经安装了,当然,还需要能够上网才行。这里同步的是 6.10 和 7.6.1810,所以,虚拟机硬盘要给100G左右。
2、实验环境
【你可能需要】【CentOS 7 搭建模板机】点我快速打开文章
【你可能需要】【VMware 从模板机快速克隆多台】点我快速打开文章
【你可能需要】【CentOS 7 命令行显示优化】点我快速打开文章
【你可看需要】【CentOS 7 配置yum源】点我快速打开文章
虚拟机:
- 系统:CenOS 7.6
- 内存:2G+
- 数量:2台
- 硬盘:100G+
使用软件的版本:
VMware 15 Pro
3、实验工具
【VMware12&15】【001-VMware 12&15】点我快速打开分享(若异常,请私信,万分感谢) 【提取码:0rb9 】
【CentOS7.6】【002-CentOS 7.6】点我快速打开分享(若异常,请私信,万分感谢) 【提取码:9tri 】
4、实验步骤
【公网源官方地址】点我快速打开文章
4.1 安装nginx服务
1. 配置官方源
echo '[nginx]
name=Nginx repo by MineGi
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1' >/etc/yum.repos.d/nginx.repo
cat /etc/yum.repos.d/nginx.repo
2. 安装与配置
yum install -y nginx &>/dev/null
echo $?
IP=$(ip a|awk -F '[ /]+' '$NF~/eth0/ {print $3}')
cat >/etc/nginx/conf.d/yum.conf <<EOF
server {
listen 80;
listen [::]:80;
server_name $IP;
location / {
root /usr/share/nginx/html;
autoindex on;
}
}
EOF
cat /etc/nginx/conf.d/yum.conf
mv /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default
3. 启动自启动
nginx -t
systemctl enable nginx
systemctl start nginx
netstat -lntup|grep -c nginx
4.2 同步公网yum源
1. 创建排除文件
cat >/root/.rsync_exclude.txt <<EOF
centosplus/
cloud/
contrib/
cr/
fasttrack/
isos/
sclo/
storage/
virt/
i386/
debug/
drpms/
EOF
cat /root/.rsync_exclude.txt
cat >/root/.rsync_exclude2.txt <<EOF
atomic/
centosplus/
cloud/
configmanagement/
cr/
dotnet/
fasttrack/
isos/
nfv/
opstools/
paas/
rt/
sclo/
storage/
virt/
debug/
drpms/
EOF
cat /root/.rsync_exclude2.txt
2. 手动执行
/usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude2.txt \
rsync://rsync.mirrors.ustc.edu.cn/centos/7.6.1810 /usr/share/nginx/html/centos
/usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude.txt \
rsync://rsync.mirrors.ustc.edu.cn/centos/6.10 /usr/share/nginx/html/centos
/usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude.txt \
rsync://rsync.mirrors.ustc.edu.cn/epel/7/x86_64 /usr/share/nginx/html/epel/7/
/usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude.txt \
rsync://rsync.mirrors.ustc.edu.cn/epel/6/x86_64 /usr/share/nginx/html/epel/6/
/usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude2.txt \
rsync://rsync.mirrors.ustc.edu.cn/centos/7 /usr/share/nginx/html/centos
/usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude.txt \
rsync://rsync.mirrors.ustc.edu.cn/centos/6 /usr/share/nginx/html/centos
由于需要时间很长,我只演示第一条,提示,后面两条是做软连接的。
由于网络原因,可能失败,多试几次即可
3. 定时任务
crontab -e
30 21 * * * /usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude2.txt rsync://rsync.mirrors.ustc.edu.cn/centos/7.6.1810 /usr/share/nginx/html/centos &>/dev/null
00 22 * * * /usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude.txt rsync://rsync.mirrors.ustc.edu.cn/centos/6.10 /usr/share/nginx/html/centos &>/dev/null
00 21 * * * /usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude.txt rsync://rsync.mirrors.ustc.edu.cn/epel/7/x86_64 /usr/share/nginx/html/epel/7/ &>/dev/null
30 20 * * * /usr/bin/rsync -zaP --exclude-from /root/.rsync_exclude.txt rsync://rsync.mirrors.ustc.edu.cn/epel/6/x86_64 /usr/share/nginx/html/epel/6/ &>/dev/null
crontab -l
4. 验证结果
1. 文件
rm -f /usr/share/nginx/html/*.html
cd /usr/share/nginx/html/ && ls
du -smh centos epel
cd centos && ll
2. 结果
在其它局域网机器进行测试
curl -s -o /etc/yum.repos.d/CentOS-Base.repo \
http://mirrors.aliyun.com/repo/Centos-7.repo
curl -s -o /etc/yum.repos.d/epel.repo \
http://mirrors.aliyun.com/repo/epel-7.repo
echo '10.0.0.10 mirrors.aliyun.com' >>/etc/hosts
tail -1 /etc/hosts
rpm -e --nodeps bc
rpm -qa bc
yum install -y bc &>/dev/null
rpm -qa bc
4.3 开启下游同步
cat >/etc/rsyncd.conf <<EOF
#rsync server
uid = nginx
gid = nginx
use chroot = no
max connections = 2000
timeout = 600
pid file = /var/run/rsyncd.pid
lock file = /var/run/rsync.lock
log file = /var/log/rsyncd.log
ignore errors
read only = true
list = true
hosts allow = 0.0.0.0/0
[centos]
path = /usr/share/nginx/html/centos
[epel]
path = /usr/share/nginx/html/epel
EOF
cat /etc/rsyncd.conf
【本文图片下载地址】【021-公网yum】点我快速打开分享(若异常,请私信,万分感谢) 【提取码:nu5c 】