CentOS7下 Apache的安装配置方法

  • Post category:Linux

以下是“CentOS7下Apache的安装配置方法”的完整使用攻略,包含两个示例说明。

CentOS7下Apache的安装配置方法

以下是在CentOS7下安装和配置Apache的步骤:

  1. 安装Apache:

bash
sudo yum install httpd

  1. 启动Apache:

bash
sudo systemctl start httpd.service

  1. 设置Apache开机自启:

bash
sudo systemctl enable httpd.service

  1. 配置防火墙:

如果您的CentOS7服务器上启用防火墙,您需要打开HTTP和HTTPS端口。以下是打开HTTP和HTTPS端口的示例:

bash
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo firewall-cmd --reload

  1. 测试Apache:

在浏览器中输入服务器IP地址或域名,您将看到Apache的欢迎页面。

示例1:安装Apache

以下是在CentOS7安装Apache的示例:

sudo yum install httpd

示例2:配置防火墙

以下是在CentOS7上配置防火墙以允许HTTP和HTTPS流量的示例:

sudo firewall-cmd --permanent ---service=http
sudo firewall-cmd --permanent --add-service=https
sudo firewall-cmd --reload

希望这些步骤和示例能够帮助您在CentOS7下安装和配置Apache。