在 CentOS 7 上安装 Apache 的方法如下:
1.首先打开终端,并使用 sudo 命令以 root 权限运行:
sudo su
2.更新软件包列表:
yum update
3.安装 Apache 服务器和常用工具:
yum install httpd
4.启动 Apache 服务:
systemctl start httpd
5.设置 Apache 服务在系统启动时自动启动:
systemctl enable httpd
6.打开防火墙,允许 HTTP 访问:
firewall-cmd --permanent --add-service=http
firewall-cmd --reload
如果一切顺利,现在就可以在浏览器中访问 http://localhost 来查看 Apache 服务器的主页了。