1. 程式人生 > >區域網Yum源的配置

區域網Yum源的配置

  • 伺服器:提供軟體倉庫的服務,提供網路服務。
  • 客戶端:與服務端要在同一個網路內,能夠訪問伺服器,需要配置自己的yum源的配置檔案。

準備伺服器:service httpd status #檢視httpd狀態,發現不存在這個服務。所以要先安裝安裝httpd服務。

安裝httpd服務

  1. yum list | grep httpd ##查詢
  2. yum -y install httpd.x86_64 ##安裝http服務
  3. 測試: service httpd start 瀏覽器頁面訪問192.168.91.3

準備軟體包

將軟體包放入http服務的根目錄 /var/www/html

  • 建立一個掛載點 mkdir /mnt/centos
  • 將映象檔案掛載到掛載點 mount -t iso9660 -o loop /dev/cdrom /mnt/centos
  • 將軟體包拷貝到/var/www/html/centos中

ln -s /mnt/centos /var/www/html ##軟連線到http服務的根目錄中

配置區域網的yum源配置檔案

  1. cd /etc/yum.repos.d
  2. rename .repo .repo.bak ./*
  3. cp CentOS-Base.repo.bak innet.repo
  4. vi innet.repo 配置成這樣
[innet]
name=innet
baseurl=http://hadoop01/centos
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
  1. yum clean all
  2. yum repolist 出現這樣的結果:
repo id repo name
status
innet innet
6,575
repolist: 6,575