主讲老师:郭盛华 Apache服务器: ApacheHTTP服务器是世界上最流行的Web服务器。 它是一款免费的开源和跨平台的HTTP服务器,提供强大的功能,可以通过各种模块进行扩展。以下说明介绍如何在Linux CentOS 8机器上安装和管理Apache Web服务器。
Apache在默认的LinuxCentOS仓库中可用,安装非常简单。 在CentOS上,Apache软件包和服务称为httpd。
要安装软件包,请在终端以root权限运行以下命令安装: yum -y install httpd
启动Apache systemctl start httpd
设置开机启动 systemctl enable httpd
检查Apache服务的状态和版本: systemctl status httpd httpd -v
测试Apache,浏览器访问 http://localhost/
常见故障:
关闭防火墙: 如果您正在运行防火墙,则还需要打开HTTP和HTTPS端口80和443: 请在终端以root权限运行以下命令 firewall-cmd --permanent --zone=public--add-service=http
firewall-cmd --permanent --zone=public--add-service=https
firewall-cmd –reload
具体请看视频教程:
|