一、环境准备
2.准备镜像文件,这里以centos-7-x86_64-2009,当然最好是使用CentOS-7-x86_64-Everything-2207-02.iso(这是完整版,包含了所有软件组件,当然体积也庞大,高达9.58G。对完整版安装盘的软件进行补充,集成所有软件;不要使用mini版)
[root@test1 yum.repos.d]# systemctl stop firewalld
[root@test1 yum.repos.d]# systemctl disabled firewalld //设置防火墙开机不自启
root@test1 yum.repos.d]# setenforce 0 //将selinux临时状态调整为开启
[root@test1 yum.repos.d]# getenforce //查看selinux状态
Permissive
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled //此时状态由原本的enforcing改为了disabled
# SELINUXTYPE= can take one of three values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted
二、开始配置yum源
[root@test1 ~]# cd /etc/yum.repos.d
/etc/yum.repos.d //yum的配置文件所在
[root@test1 yum.repos.d]# mkdir bak
[root@test1 yum.repos.d]# ls
bak CentOS-Media.repo
CentOS-Base.repo CentOS-Sources.repo
CentOS-CR.repo CentOS-Vault.repo
CentOS-Debuginfo.repo CentOS-x86_64-kernel.repo
CentOS-fasttrack.repo
[root@test1 yum.repos.d]# mv *.repo bak/
[root@test1 yum.repos.d]# ls
bak
5.创建yum_http.repo文件
[root@test1 yum.repos.d]# mkdir yum_http.repo
[root@test1 yum.repos.d]# vim yum_http.repo
将一下内容写入
[centos]
name=centos
baseurl=file:///opt/centos
gpgcheck=0
enabled=1
[root@test1 yum.repos.d]# ls /opt/centos
ls: 无法访问/opt/centos: 没有那个文件或目录
[root@test1 yum.repos.d]# mkdir /opt/centos
[root@test1 yum.repos.d]# cd /opt/centos
[root@test1 centos]# ls
[root@test1 centos]# ls
CentOS-7-x86_64-DVD-2009.iso
[root@test1 centos]# mount /opt/centos/CentOS-7-x86_64-DVD-2009.iso /opt/centos //挂载镜像文件,简单挂载mount: /dev/loop0 写保护,将以只读方式挂载
[root@test1 yum.repos.d]# yum -y install httpd
[root@test1 ~]# cd /var/www/html/ //进入到httpd的默认目录
[root@test1 html]# ll
总用量 0
[root@test1 html]# mkdir centos //创建一个centos目录
[root@test1 html]# ll
总用量 0
drwxr-xr-x. 2 root root 6 4月 23 10:37 centos
[root@test1 html]# ln -s /opt/centos/ /var/www/html/centos
[root@test1 html]# ll
总用量 4
lrwxrwxrwx 1 root root 12 7月 8 16:06 centos -> /opt/centos/
-rw-r--r-- 1 root root 1592 7月 8 15:50 index.html
drwxr-xr-x 2 root root 26 7月 8 16:01 test
[root@test1 yum.repos.d]# systemctl start httpd
10.修改http.repo(这里以自己创建的名字为准)文件中的baseurl为服务端ip
[root@test3 yum.repos.d]# vim http.repo
[centos]
name=centos
baseurl=http://192.168.168.5:8080/centos //此处IP为服务端IP地址,如果修改了端口记得加上
gpgcheck=0
enabled=1
[root@test3 yum.repos.d]# yum -y install httpd
本文链接:https://blog.runxinyun.com/post/280.html 转载需授权!
留言0