Apache服务器的安装配置
环境:centos stream 9
Apache是世界使用排名第一的Web服务器软件。它可以运行在几乎所有广泛使用的计算机平台上,由于其跨平台和安全性被广泛使用,是最流行的Web服务器端软件之一。它快速、可靠并且可通过简单的API扩充,将Perl/Python等解释器编译到服务器中。同时Apache音译为阿帕奇,是北美印第安人的一个部落,叫阿帕奇族,在美国的西南部。也是一个基金会的名称、一种武装直升机等等。
安装Apache
进入root账户后使用yum源下载apache服务器
yum -y install httpd
配置防火墙
查看防火墙状态,关闭防火墙,否则无法通过浏览器访问web服务器
systemctl status firewalld.service
关闭防火墙
systemctl stop firewalld.service
启动Apache
systemctl start httpd
systemctl enable httpd //开机自启
检查http服务状态
systemctl status httpd
部署网页
编写html网页
在var.www.html下创建一个index.html文件
vi /var/www/html/index.html
<html>
<head>
</head>
<body>
<h1>hello world liujiayi</h1>
</body>
</html>
查看本机ip地址
ifconfig
查看网页