centos7安装apache详细步骤
时间: 2023-09-05 08:07:43 浏览: 101
centos安装apache
以下是 CentOS 7 安装 Apache 的详细步骤:
1. 打开终端并以 root 用户身份登录。
2. 更新软件包列表:
```
yum update
```
3. 安装 Apache:
```
yum install httpd
```
4. 启动 Apache 服务:
```
systemctl start httpd
```
5. 配置 Apache 开机自启动:
```
systemctl enable httpd
```
6. 验证 Apache 是否运行正常:
在浏览器中输入服务器的 IP 地址或域名,如果看到 Apache 的欢迎页面,则说明 Apache 安装成功。
如果防火墙被启用,需要打开 HTTP 服务的防火墙端口,使其对外可见:
```
firewall-cmd --add-service=http --permanent
firewall-cmd --reload
```
注意:默认的 Apache 网站根目录是 /var/www/html/。可以将网站文件放在该目录下,或在 Apache 的配置文件中指定网站根目录。
阅读全文