Linux中关于httpd仓库安装的简要步骤

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux中关于httpd仓库安装的简要步骤相关的知识,希望对你有一定的参考价值。

#创建httpd仓库步骤

1.配置本地yum源

此步骤略

2.搭建http 启动服务

[[email protected] ~]# yum install -y httpd

[[email protected] ~]# systemctl start httpd
[[email protected] ~]# ps -ef|grep httpd
root       2232      1  0 18:53 ?        00:00:00 /usr/sbin/httpd -DFOREGROUND
apache     2233   2232  0 18:53 ?        00:00:00 /usr/sbin/httpd -DFOREGROUND
apache     2234   2232  0 18:53 ?        00:00:00 /usr/sbin/httpd -DFOREGROUND
apache     2235   2232  0 18:53 ?        00:00:00 /usr/sbin/httpd -DFOREGROUND
apache     2236   2232  0 18:53 ?        00:00:00 /usr/sbin/httpd -DFOREGROUND
apache     2237   2232  0 18:53 ?        00:00:00 /usr/sbin/httpd -DFOREGROUND
root       2252   2183  0 18:55 pts/1    00:00:00 grep --color=auto httpd
[[email protected] ~]# ss -antl
State      Recv-Q Send-Q Local Address:Port               Peer Address:Port              
LISTEN     0      128          *:22                       *:*                  
LISTEN     0      100    127.0.0.1:25                       *:*                  
LISTEN     0      128         :::80                      :::*                  
LISTEN     0      128         :::22                      :::*                  
LISTEN     0      100        ::1:25                      :::*  

3.创建http源的目录

[[email protected] ~]# ls /var/www/html
[[email protected] ~]# cd /var/www/html
[[email protected] html]# mkdir lin.d

4.把光盘内容拷贝到新创建的目录

[[email protected] html]# cp -r /mnt/* /var/www/html/lin.d/

5.创建并配置httpd源的配置文件

[[email protected] html]# vi /etc/yum.repos.d/doudou.repo
[doudou]
name=This is a cute boy
baseurl=http://192.168.24.232/lin.d
enabled=1
gpgcheck=0

6.删掉本地yum源

[[email protected] html]# mv /etc/yum.repos.d/doudou.repo .

7.清空本地yum源

[[email protected] html]# yum clean all

8.关闭防火墙

[[email protected] html]# iptables -L  //列出所有规则

[[email protected] html]# getenforce    //查看selinux状态

[[email protected] html]# setenforce 0   //临时关闭selinux

[[email protected] html]# iptables -F  //清除所有规则

[[email protected] html]# iptables -X  //清除所有自定义规则
[[email protected] html]# iptables -Z   //清空规则链中的数据包计算器和字节计数器

9.验证httpd源是否搭建成功
技术分享图片

以上是关于Linux中关于httpd仓库安装的简要步骤的主要内容,如果未能解决你的问题,请参考以下文章

Linux中本地仓库yum源搭建的简要步骤

linux-6week

maven安装——简要步骤——记录

linux中关于账户的几个特殊的目录

[python] 在 python2和3中关于类继承的 super方法简要说明

linux中关于硬盘分区操作