我们在前面已经讲的比较多的是配置yum本地源,如果我们在企业生产中,单独找一台机器来做yum源是否可行呢?
答案是肯定的,我们可以通过配置http,或者ftp方式来提供yum源.
下面我们以http方式为例来讲解:
比如我们的yum源机器为classroom,ip为172.25.254.254
要使用这个源的机器为desktop0,ip 为:172.25.0.10
安装步骤:
以下操作在yum源机器 classroom 上完成
1.安装并且启动http 服务
yum install httpd -y
systemctl start httpd
systemctl enable httpd
2.挂载镜像至/var/www/html/rhel7.0
classroom机器上有rhel7的iso文件
mount /u01/setup/rhel-server-7.0-x86_64-dvd.iso /var/www/html/rhel7.0
3.关闭防火墙/将http永久开放
# systemctl stop firewalld
# systemctl disable firewalld
或者
#firewall-cmd --permanent --add-service=http
4.设置开机启动
vim /etc/fstab 文件追加:
/u01/setup/rhel-server-7.0-x86_64-dvd.iso /var/www/html/rhel7.0 iso9660 ro 0 0
以上yum源仓库已经配置完成.
下面需要配置要使用yum源的机器,比如desktop0 机器
1.编写/etc/yum.repos.d/rhel_dvd.repo文件
[rhel_dvd]
gpgcheck=0
enabled=1
baseurl=http://172.25.254.254/rhel7.0
name=remote classroom copy of dvd
2.刷新仓库
yum clean all #刷新仓库配置
yum repolist all #报告yum仓库的状态
3.测试软件的安装
yum install tree
|