前言

Apache HTTP Server(简称Apache)是Apache软件基金会的一个开放源码的网页服务器。Apache(音译为阿帕奇)是世界使用排名第一的Web服务器软件。它可以运行在几乎所有广泛使用的计算机平台上,由于其跨平台和安全性被广泛使用,是最流行的Web服务器端软件之一。它快速、可靠并且可通过简单的API扩充,将Perl/Python等解释器编译到服务器中。

一、安装Apache

1.安装Apache

Apache 2.0以上就叫httpd

yum -y install httpd

在这里插入图片描述

2.开启服务

systemctl start httpd

在这里插入图片描述

3.查看服务的状态

Active: active (running):就是服务正在运行

systemctl status httpd

在这里插入图片描述

4.网络请求测试

出现网页代码说明没有问题

curl http://localhost

在这里插入图片描述

5.将服务设置为自启

systemctl enable httpd

在这里插入图片描述

二、外部电脑访问Apache设置

方法一:关闭防火墙

systemctl stop firewalld

在这里插入图片描述

在这里插入图片描述

方法二:添加防火墙端口(Apache默认端口:80,如果修改了Apache端口,添加端口的时候要注意对应)

  • 添加防火墙端口

    firewall-cmd --zone=public --add-port=80/tcp --permanent
    

    在这里插入图片描述

  • 防火墙重新载入(使修改的操作生效)

    firewall-cmd --reload
    

    在这里插入图片描述
    在这里插入图片描述

三、配置Apache服务

1.Apache服务常见配置文件介绍

文件目录/名称作用
/etc/httpd服务目录
/etc/httpd/conf/httpd.conf主配置文件
/var/www/html网站数据目录
/var/log/httpd/access_log访问日志
/var/log/httpd/error_log错误日志
/etc/httpd/conf.d附加模块配置目录
/etc/httpd/modules模块文件路径链接
/etc/httpd/log默认日志文件链接

2.Apache的主配置文件httpd.conf介绍

在httpd服务程序的主配置文件中,存在三种类型的信息:注释行信息、全局配置、区域配置。(配置文件位置:/etc/httpd/conf/httpd.conf)

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

3.配置httpd服务程序常用的参数及用途

参数作用
ServerRoot服务目录 ServerRoot "/etc/httpd"
Listen端口监听,监听的IP地址与端口号 Listen 12.34.56.78:80Listen 80
User运行服务的用户 User apache
Group运行服务的用户组 Group apache
ServerAdmin管理员邮箱 ServerAdmin root@localhost
DocumentRoot网站根目录 DocumentRoot "/var/www/html"
ErrorLog错误日志 ErrorLog "logs/error_log"
LogLevel日志级别(debug, info, notice, warn, error, crit,alert, emerg) LogLevel warn
AddDefaultCharset字符集 AddDefaultCharset UTF-8
Include用于加载SSL配置目录 Include conf.modules.d/*.conf

四、Apache常用命令

  • 查看版本信息

    httpd -v
    

    在这里插入图片描述

  • 启动服务

    systemctl start httpd
    
  • 停止服务

    systemctl stop httpd
    
  • 重启服务

    systemctl restart httpd
    
  • 重新加载配置文件

    systemctl reload httpd
    
  • 查看服务状态

    systemctl status httpd
    

    在这里插入图片描述

Logo

开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!

更多推荐