下面我来详细讲解一下“Linux运维基础httpd静态网页教程”的完整攻略。
一、安装httpd服务
在Linux系统中,可以通过 yum 命令安装 httpd 服务,具体步骤如下:
- 更新yum源
bash
yum update
- 安装httpd服务
bash
yum install httpd
安装完成后,可以通过以下命令检查 httpd 服务是否安装成功:
bash
systemctl status httpd
如果出现 Active: active (running) 字样,表示服务已经成功启动了。
示例:
```
[root@localhost ~]# systemctl status httpd
● httpd.service - The Apache HTTP Server
Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled)
Active: active (running) since Wed 2021-10-20 09:10:50 CST; 2s ago
Process: 12210 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited, status=0/SUCCESS)
Main PID: 12211 (httpd)
Status: "Running, listening on: port 80"
Tasks: 213 (limit: 4915)
Memory: 14.1M
CPU: 33ms
CGroup: /system.slice/httpd.service
├─12211 /usr/sbin/httpd -DFOREGROUND
├─12212 /usr/sbin/httpd -DFOREGROUND
├─12213 /usr/sbin/httpd -DFOREGROUND
├─12214 /usr/sbin/httpd -DFOREGROUND
└─12215 /usr/sbin/httpd -DFOREGROUND
Oct 20 09:10:50 localhost.localdomain systemd[1]: Starting The Apache HTTP Server...
Oct 20 09:10:50 localhost.localdomain httpd[12210]: AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message
Oct 20 09:10:50 localhost.localdomain systemd[1]: Started The Apache HTTP Server.
```
二、创建静态网页
我们可以通过 vim 等编辑器创建静态网页,具体步骤如下:
- 创建网站根目录(这里假设为 /var/www/html)
bash
mkdir -p /var/www/html
- 创建静态网页文件(这里假设为 index.html)
bash
vim /var/www/html/index.html
- 在 index.html 文件中编写网页内容
```html
欢迎来到我的网站
```
示例:
[root@localhost ~]# vim /var/www/html/index.html
```html
欢迎来到我的网站
```
三、启动httpd服务
启动 httpd 服务的命令为:
systemctl start httpd
启动完成后,我们可以通过浏览器访问自己的网站,地址为本机的IP地址,例如:http://192.168.0.100。
示例:
[root@localhost ~]# systemctl start httpd
[root@localhost ~]#
至此,我们已经成功创建了一个简单的静态网页,并通过 httpd 服务进行了访问。
注意:若要在防火墙中开放80端口,需要使用如下命令:
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --reload
以上就是“Linux运维基础httpd静态网页教程”的完整攻略。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Linux运维基础httpd静态网页教程 - Python技术站