如果centos伺服器處在內網環境中時,如果缺少依賴手動安裝那麼會非常麻煩,要花費很多時間來尋找rpm包,現在如果搭建本地的yum源,就非常方便了,如果搭建http的,那麼區域網內其他伺服器就都可以使用了,使用yum源首先需要乙個centos安裝映象,這裡是:centos-7-x86_64-***-1708.iso,下面是http yum源搭建和配置過程
來安裝,我這裡已經安裝了,所以直接使用
啟動httpd服務,啟動之後執行命令
來檢視執行狀態,如下圖所示,就是啟動成功了:
active: active (running) since 五 2018-03-02 00:34:24 cst; 12s ago
3月 02 00:34:24 localhost.localdomain systemd[1]: starting the apache http server...
3月 02 00:34:24 localhost.localdomain httpd[24204]: ah00558: httpd: could not reliably determine the serve...age
3月 02 00:34:24 localhost.localdomain systemd[1]: started the apache http server.
hint: some lines were ellipsized, use -l to show in full.
然後通過瀏覽器訪問測試,如下圖:
現在伺服器執行正常,並且伺服器的根目錄在/var/www/html下,可以解析靜態頁面以及顯示目錄列表,接下來需要掛載光碟映象,掛載點在/mnt/cdrom下
[root@localhost media]# mkdir /mnt/cdrom
[root@localhost media]# mount -t auto /dev/cdrom /mnt/cdrom
掛載之後建立軟鏈結到/var/www/html下
[root@localhost cdrom]# ln -s /mnt/cdrom/ /var/www/html/centos7
然後訪問瀏覽器測試
現在就成功看到光碟內容,yum源配置成功,現在配置主機的yum指向這個yum源
先備份,要備份,請備份
編輯配置檔案:/etc/yum.repos.d/centos-base.repo,[base]塊預設如下:
[base]
name=centos-$releasever - base
mirrorlist=
#baseurl=
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/rpm-gpg-key-centos-7
然後注釋mirrorlist,放開baseurl配置成yum源位置,還有gpgkey也配置成對應位置,如下圖:
[base]
name=centos-$releasever - base
#mirrorlist=
baseurl=
gpgcheck=1
#gpgkey=file:///etc/pki/rpm-gpg/rpm-gpg-key-centos-7
gpgkey=rpm-gpg-key-centos-7
配置完這些以後,然後在[updates]和[extras]都新增乙個enabled=0配置項,表示不生效,一般只用[base]中的配置即可,配置好之後儲存退出
然後執行 yum repolist 檢視yum源資訊
[root@localhost yum.repos.d]# yum repolist
已載入外掛程式:fastestmirror
loading mirror speeds from cached hostfile
* extras: mirrors.tuna.tsinghua.edu.cn
* updates: mirrors.tuna.tsinghua.edu.cn
源標識 源名稱 狀態
base centos-7 - base 9,591
extras/7/x86_64 centos-7 - extras 390
updates/7/x86_64 centos-7 - updates 1,941
repolist: 11,922
centos7安裝部署本地區域網yum源
應用場景 當linux系統都是最小化安裝的系統,又無法做到每台都能訪問外網的情況下,安裝常用工具或者依賴包的最好辦法可能就是建立本地yum源了。安裝環境 一台 centos 7.4 minimal 虛擬機器 ip 138.138.82.11 安裝方法 1.使用完整的ios映象包作為yum源資料夾中內...
centos 7 固定區域網IP
昨天搭建了flink on yarn的環境,一切配置妥當之後執行了乙個example,沒毛病。今天開機再提交job到yarn時發現集群跑不起來了,看了一下ip才發現虛擬機器的ip變了,今天更改了一下配置將ip固定了。1 首先檢視對應機器的ip是什麼,執行ifconfg ifconfig ens33 ...
CentOS搭建區域網yum伺服器
前一段時間在寧夏電信搭建伺服器環境,用到的系統版本是centos6.4。現場的環境大致是 伺服器使用私網環境,伺服器與伺服器之間可以互聯互通。由於要安裝heartbeat,磁碟陣列的多路合併軟體,vsftp,nginx等,這些軟體的編譯和安裝過程中會涉及很多很多依賴,在沒有外網環境的情況下,去裝依賴...