centos7 Apache安装与配置
时间: 2023-08-06 13:09:10 浏览: 121
Apache安装与配置
好的,以下是 CentOS 7 上安装和配置 Apache 的步骤:
1. 更新软件包
在终端中输入以下命令:
```
sudo yum update
```
2. 安装 Apache
在终端中输入以下命令:
```
sudo yum install httpd
```
3. 启动 Apache
在终端中输入以下命令:
```
sudo systemctl start httpd.service
```
4. 设置开机自启
在终端中输入以下命令:
```
sudo systemctl enable httpd.service
```
5. 配置防火墙
如果您使用的是 CentOS 7 的默认防火墙 firewalld,您需要打开 HTTP 和 HTTPS 端口。在终端中输入以下命令:
```
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo firewall-cmd --reload
```
6. 验证 Apache 安装是否成功
在您的网站浏览器中输入 http://localhost,如果您看到 Apache 的欢迎页面,则表示安装成功。
至此,CentOS 7 上 Apache 的安装和配置就完成了。希望这个解答对您有所帮助!
阅读全文