區域網Yum源的配置
阿新 • • 發佈:2018-12-17
- 伺服器:提供軟體倉庫的服務,提供網路服務。
- 客戶端:與服務端要在同一個網路內,能夠訪問伺服器,需要配置自己的yum源的配置檔案。
準備伺服器:service httpd status #檢視httpd狀態,發現不存在這個服務。所以要先安裝安裝httpd服務。
安裝httpd服務
- yum list | grep httpd ##查詢
- yum -y install httpd.x86_64 ##安裝http服務
- 測試: 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源配置檔案
- cd /etc/yum.repos.d
- rename .repo .repo.bak ./*
- cp CentOS-Base.repo.bak innet.repo
- 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 |
- yum clean all
- yum repolist 出現這樣的結果:
repo id | repo name |
---|---|
status | |
innet | innet |
6,575 | |
repolist: 6,575 |