linux下搭建基本web服务

服务端配置:

1.安装一个可以提供Web功能软件

[root@server0 ~]# yum -y install httpd

2.启动httpd服务

[root@server0 ~]# systemctl restart httpd
[root@server0 ~]# systemctl enable httpd


3.编写自己的测试页面文件

在web服务中默认存放网页文件的路径:/var/www/html

默认网页文件名字:index.html

[root@server0 ~]# vim /var/www/html/index.html

hello world!


客户端访问

[root@desktop0 /]# firefox 172.25.0.11








你可能感兴趣的:(linux系统知识收纳录)