本次以搭建rhel5.5yum源作實驗,yum源服務端爲rhel6.1,使用http作服務。html
服務端:192.168.10.17 rhel6.1sql
客戶端:192.168.10.10 rhel5.5vim
1、服務端配置緩存
1.把rhel5.5的iso鏡像上傳到服務器的/img目錄下,新建掛載目錄/iso,而後掛載。服務器
- #cd /img
- #mount -o loop rhel-server-5.5-i386-dvd.iso /iso
- #df -kh /iso 文件系統 容量 已用 可用 已用%% 掛載點 /img/rhel-server-5.5-i386-dvd.iso 2.9G 2.9G 0 100% /iso
2.安裝createrepo軟件包,若是系統已安裝就不用了。ide
- #rpm -ivh createrepo-0.9.8-4.el6.noarch.rpm
3.安裝httpd軟件包,若是系統已安裝就不用了。svn
- #rpm -ivh httpd-2.2.15-9.el6.x86_64.rpm
- #/etc/init.d/httpd start
4.把安裝盤上的安裝文件複製到專用的目錄中,因爲使用http傳輸,因此在httpd目錄下建立。這裏要注意SELinux權限。工具
- #cd /var/www/html/
- #mkdir yum5.5
- #cd yum5.5
- #cp -rpf /iso/Server/* .
5.建立createrepo依賴文件oop
- #createrepo -s sha .
6.配置完畢,注意iptables要開放80端口。開發工具
2、客戶端配置
1.建立yum客戶端配置文件
- #cd /etc/yum.repos.d/
- #vim 192.168.10.17.repo
- [localyum]
- name=192.168.10.17 yum
- baseurl=http://192.168.10.17/yum5.5/
- gpgcheck=0
2.清除緩存
- #yum clean all
3.測試
- #yum search httpd
- Loaded plugins: fastestmirror
- Loading mirror speeds from cached hostfile
- localyum | 1.2 kB 00:00
- ========================================== Matched: httpd ==========================================
- mod_ssl.i386 : Apache HTTP 服務器的 SSL/TLS 模塊
- system-config-httpd.noarch : Apache 配置工具。
- httpd.i386 : Apache HTTP 服務器
- httpd-devel.i386 : Apache HTTP 服務器的開發工具。
- httpd-manual.i386 : Apache HTTP 服務器的文檔。
- mod_dav_svn.i386 : Subversion 服務器的 Apache 服務器模塊。
4.測試經過。
至此,所有測試完畢並經過。