搭建內部yum倉庫(centos6+centos7+epel源)
搭建自己的yum倉庫,將自己制作好的rpm包,添加到自己的yum源中。
yum倉庫服務端配置如下 :
1. 創建yum倉庫目錄
mkdir -p /data/yum_data/
cd /data/yum_data/
#可以上傳rpm包到此目錄,此目錄下面還可以包括文件夾
2. 安裝createrepo軟件
[[email protected] yum_data]# yum -y install createrepo
3. 初始化repodata索引文件
createrepo -pdo /data/yum_data/ /data/yum_data/
4. 提供yum服務
# 可以用Apache或nginx提供web服務,適用於內網環境
基於HTTP的yum源配置
安裝apache軟件
[[email protected] yum_data]# yum install -y httpd
[[email protected] yum_data]# /etc/init.d/httpd start
正在啟動 httpd:[確定]
[[email protected] yum_data]# netstat -lntup|grep httpd
tcp 0 0 :::80 :::* LISTEN 6403/httpd
#根據自己服務器ip地址進行配置
[[email protected] yum_data]# echo "192.168.30.130 yum.nulige.com" >>/etc/hosts
[[email protected] yum_data]# tail -1 /etc/hosts
192.168.30.130 yum.nulige.com
#在window系統中添加hosts解析
192.168.30.130 yum.nulige.com
#訪問網站
在瀏覽器中輸入:yum.nulige.com
#修改配置文件/etc/httpd/conf/httpd.conf
將默認的www目錄指向本地創建的yum倉庫目錄
[[email protected] yum_data]# cd /etc/httpd/conf
[[email protected] conf]# ll
總用量 52
-rw-r--r--. 1 root root 34419 7月 12 19:00 httpd.conf
-rw-r--r--. 1 root root 13139 7月 18 23:24 magic
#操作前先備份(運維一定要記住這點)
[[email protected] conf]# cp httpd.conf httpd.conf.backup.nulige.2016-11-19
[[email protected] conf]# ll
總用量 88
-rw-r--r--. 1 root root 34419 7月 12 19:00 httpd.conf
-rw-r--r--. 1 root root 34419 11月 19 18:02 httpd.conf.backup.nulige.2016-11-19
-rw-r--r--. 1 root root 13139 7月 18 23:24 magic
[[email protected] conf]# vi httpd.conf
DocumentRoot "/data/yum_data/" #用搜索 /DocumentRoot 的方法
<Directory "/data/yum_data/"> #317行
#修改/usr/local/yumrepo目錄的屬主和屬組為apache
[[email protected] conf]# chown -R apache.apache /data/yum_data/
[[email protected] conf]# ll -l /data/yum_data/
總用量 12
drwxr-xr-x. 3 apache apache 4096 11月 19 16:49 centos
drwxr-xr-x. 3 apache apache 4096 11月 19 16:50 epel
drwxr-xr-x. 2 apache apache 4096 11月 19 17:50 repodata
#刪除默認主頁
[[email protected] conf]# pwd
/etc/httpd/conf
[[email protected] conf]# cd ..
[[email protected] httpd]# ll
總用量 8
drwxr-xr-x. 2 root root 4096 11月 19 18:07 conf
drwxr-xr-x. 2 root root 4096 11月 19 17:50 conf.d
lrwxrwxrwx. 1 root root 19 11月 19 17:50 logs -> ../../var/log/httpd
lrwxrwxrwx. 1 root root 29 11月 19 17:50 modules -> ../../usr/lib64/httpd/modules
lrwxrwxrwx. 1 root root 19 11月 19 17:50 run -> ../../var/run/httpd
#把配置移到tmp目錄下,少用rm命令。
[[email protected] httpd]# mv conf.d/welcome.conf /tmp
重啟服務:
# service httpd restart
or
[[email protected] httpd]# /etc/init.d/httpd restart
停止 httpd:[確定]
正在啟動 httpd:[確定]
#在windows系統中,通過瀏覽器輸入yum.nulige.com 訪問
5. 添加新的rpm包
# 只下載軟件不安裝
yumdownloader pcre-devel openssl-devel
#保留yum安裝軟件時不刪除安裝包
[[email protected] yum_data]# sed -i "s#keepcache=0#keepcache=1#g" /etc/yum.conf
[[email protected] yum_data]# grep keepcache /etc/yum.conf
keepcache=1
# 安裝包存儲目錄
cachedir=/var/cache/yum/$basearch/$releasever
ll /var/cache/yum/x86_64/6/base/packages
#把保留的rpm包,移到yum服務器目錄中
[[email protected] x86_64]#cd /var/cache/yum/x86_64/6/base/packages
[[email protected] packages]# mv * /data/yum_data/centos/6/os/x86_64
[[email protected] x86_64]# ll
總用量 8120
-rw-r--r--. 1 root root 15824 7月 6 2011 apr-util-ldap-1.3.9-3.el6_0.1.x86_64.rpm
-rw-r--r--. 1 root root 98392 5月 12 2016 createrepo-0.9.9-24.el6.noarch.rpm
-rw-r--r--. 1 root root 72520 7月 3 2011 deltarpm-3.5-0.5.20090913git.el6.x86_64.rpm
-rw-r--r--. 1 root root 15936 7月 3 2011 dos2unix-3.1-37.el6.x86_64.rpm
-rw-r--r--. 1 root root 4830620 3月 24 2016 git-1.7.1-4.el6_7.1.x86_64.rpm
-rw-r--r--. 1 root root 72436 7月 3 2011 lrzsz-0.12.20-27.1.el6.x86_64.rpm
-rw-r--r--. 1 root root 2884068 6月 10 2014 nmap-5.51-4.el6.x86_64.rpm
-rw-r--r--. 1 root root 27748 7月 3 2011 python-deltarpm-3.5-0.5.20090913git.el6.x86_64.rpm
-rw-r--r--. 1 root root 239316 5月 12 2016 sysstat-9.0.4-31.el6.x86_64.rpm
-rw-r--r--. 1 root root 36884 1月 14 2015 tree-1.5.3-3.el6.x86_64.rpm
# 每加入一個rpm包就要更新一下
createrepo --update /data/yum_data/
配置客戶端配置
#centos6.X 系統yum源配置
cd /etc/yum.repos.d
1 [[email protected] yum.repos.d]# vi localyum.repo 2 [localyum] 3 name=centos6 4 baseurl=http://yum.nulige.com/centos/6/os/x86_64/ 5 enable=1 6 gpgcheck=0 7 8 [localepel] 9 name=epel 10 baseurl= 11 enable=1 12 gpgcheck=0 13 14 [localextra] 15 name=extra 16 baseurl= 17 enable=118 gpgcheck=0
備註:註意更改為自己的域名地址
centos7 系統yum源配置方法
1 [[email protected] yum.repos.d]# vi localyum.repo 2 [localyum] 3 name=centos7 4 baseurl=http://yum.nulige.com/centos/7/os/x86_64/ 5 enable=1 6 gpgcheck=0 7 8 [localepel] 9 name=epel 10 baseurl= 11 enable=1 12 gpgcheck=0 13 14 [localextra] 15 name=extra 16 baseurl= 17 enable=1 18 gpgcheck=0
#指定使用localyum庫,並且是臨時使用內網yum源,服務器重啟後失效。
[[email protected] ~]# yum --enablerepo=localyum --disablerepo=base,extras,updates,epel list
#永久使用需要修改配置文件將默認的repo文件關閉
cd /etc/yum.repos.d/
1 vi CentOS-Base.repo 2 # 在每一個啟動的源加上 3 # enabled=0 #改為1就啟用,沒有此參數也是啟用。 4 5 6 [base] 7 ………… 8 enabled=0 9 [updates]10 …………11 enabled=012 [extras]13 …………14 enabled=0
備註:還有其他開啟的倉庫就使用這個辦法關閉。
或
使用下面方法,把/etc/yum.repos.d/ 下面的repo結尾文件,全部移到其它目錄中去。
1 mkdir -p /home/nulige/yum_backup2 3 cd /etc/yum.repos.d4 5 mv * /home/nulige/yum_backup
同步鏡公網鏡像yum源配置方法
但還有一種企業需求,說的更具體一點,平時大家yum安裝軟件都是從公網下載的,占用帶寬,因此在公司裏搭建一個內網yum服務器,但又考慮到如果yum軟件的數據庫文件repodata不一樣,就會有問題。因此我想到的解決方法就是直接使用公網yum源的repodata。
鏡像同步公網yum源
上遊yum源必須要支持rsync協議,否則不能使用rsync進行同步。
http://mirrors.ustc.edu.cn/status/
CentOS官方標準源:rsync://mirrors.ustc.edu.cn/centos/
epel源:rsync://mirrors.ustc.edu.cn/epel/
同步命令:
# 使用rsync同步yum源,為了節省帶寬、磁盤和下載時間,我只同步了CentOS6的rpm包,這樣所有的rpm包只占用了21G,全部同步需要300G左右。
# 同步base源,小技巧,我們安裝系統的光盤鏡像含有部分rpm包,大概3G,這些就不用重新下載。
#創建四個目錄,用於同步公網yum源
mkdir -p /data/yum_data/centos/6/os/x86_64/
mkdir -p /data/yum_data/centos/6/extras/x86_64/
mkdir -p /data/yum_data/centos/6/updates/x86_64/
mkdir -p /data/yum_data/epel/6/x86_64/
#下面四條命令,同時復制執行,就會開始同步官網yum源到本地。
1 /usr/bin/rsync -av rsync://mirrors.ustc.edu.cn/centos/6/os/x86_64/ /data/yum_data/centos/6/os/x86_64/ 2 /usr/bin/rsync -av rsync://mirrors.ustc.edu.cn/centos/6/extras/x86_64/ /data/yum_data/centos/6/extras/x86_64/ 3 /usr/bin/rsync -av rsync://mirrors.ustc.edu.cn/centos/6/updates/x86_64/ /data/yum_data/centos/6/updates/x86_64/ 4 /usr/bin/rsync -av --exclude=debug rsync://mirrors.ustc.edu.cn/epel/6/x86_64/ /data/yum_data/epel/6/x86_64/
#查看同步完成後yum源的大小:
1 [[email protected] yum_data]# cd .. 2 3 [[email protected] data]# du -sh yum_data 4 12G yum_data 5 6 [[email protected] data]# LANG=en 7 [[email protected] data]# tree -L 3 yum_data/ 8 yum_data/ 9 |-- centos10 | `-- 611 | |-- extras12 | |-- os13 | `-- updates14 |-- epel15 | `-- 616 | `-- x86_6417 `-- repodata18 |-- 401dc19bda88c82c403423fb835844d64345f7e95f5b9835888189c03834cc93-filelists.xml.gz19 |-- 6bf9672d0862e8ef8b8ff05a2fd0208a922b1f5978e6589d87944c88259cb670-other.xml.gz20 |-- 77a287c136f4ff47df506229b9ba67d57273aa525f06ddf41a3fef39908d61a7-other.sqlite.bz221 |-- 8596812757300b1d87f2682aff7d323fdeb5dd8ee28c11009e5980cb5cd4be14-primary.sqlite.bz222 |-- dabe2ce5481d23de1f4f52bdcfee0f9af98316c9e0de2ce8123adeefa0dd08b9-primary.xml.gz23 |-- f8606d9f21d61a8bf405af7144e16f6d7cb1202becb78ba5fea7d0f1cd06a0b2-filelists.sqlite.bz224 `-- repomd.xml25 26 9 directories, 7 files
搭建內部yum倉庫(centos6+centos7+epel源)