赞
踩
纯内网使用,不连通外网
一、提前准备好iso文件并上传服务器
我这里使用的是:rhel-7.6-x86_64.iso
二、挂载ISO
<code class="language-plaintext hljs">在/var/www/html下创建centos目录
[root@localhost ~]# mkdir -p /var/www/html/centos
拷贝rhel-7.6-x86_64.iso文件至/var/log/www/html/centos下
[root@localhost centos]# mount -t auto rhel-7.6-x86_64.iso /var/www/html/centos/</code>
三、配置yum源
<code class="language-plaintext hljs">#配置yum源文件
cat > /etc/yum.repos.d/base.repo <<EOF
[base]
name=base
baseurl=file:///mnt
enabled=1
gpgcheck=0
EOF
#清缓存并生成缓存
yum clean all && yum makecache</code>
四、检查yum源是否配置成功
<code class="language-plaintext hljs">#输入yum list
[root@localhost ~]# yum list
#展示如下图显示就成功了</code>
五、通过httpd服务发布
<code class="language-plaintext hljs">#通过yum源安装httpd
[root@localhost ~]# yum install -y httpd</code>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。