自学内容网 自学内容网

超详图解 Apache HTTP Server(httpd)安装与验证

在OpenEuler 24.03系统中安装验证 Apache HTTP Server(httpd)的过程通常涉及以下步骤:

一、Apache HTTP Server(httpd)安装

1.检查是否已安装httpd:

rpm -q httpd

2.更新系统包索引:更新您的系统包索引以确保您安装的是最新版本的软件包。确保OpenEuler能够上网,如果是虚拟机,可设置NAT网络模式。

   dnf update

3.安装 Apache HTTP Server:使用包管理器安装 httpd 包。

   dnf install httpd

3. 启动 Apache 服务: 安装完成后,启动 httpd 服务。

   systemctl start httpd

4. 设置开机自启:如果您希望 Apache 服务在系统启动时自动启动,可以使用以下命令设置。

   systemctl enable httpd

4.检查 Apache 服务状态:检查 httpd 服务是否成功启动。

   systemctl status httpd

图中提示:Active :active(running).......说明htt2pd服务已启动

 二、验证安装

1. 查看防火墙状态 :

firewall-cmd --state

2. 查看防火墙开放那些服务和端口 

firewall-cmd --list-all

结果显示80 端口没有开放。

3. 防火墙添加 80 端口开放

firewall-cmd --add-port=80/tcp --permanen

重新刷新防火墙系统

   firewall-cmd --reload

二. 验证安装:

1.可在OpenEuler服务器终端输入curl://127.0.0.1或curl://localhost,显示Apache 的默认欢迎页面的HTML脚本。

 2.  在VM环境中,宿主机的浏览器中输入服务器的 IP 地址,如果安装成功,您应该能看到 Apache 的默认欢迎页面。也可在本机的浏览器中输入http://127.0.0.1。


原文地址:https://blog.csdn.net/zhangxueyi/article/details/142358387

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!