当前位置:   article > 正文

内网搭建yum源_内网 制作yum源

内网 制作yum源

前言

纯内网使用,不连通外网

一、提前准备好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>
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/168588
推荐阅读
相关标签
  

闽ICP备14008679号