C/C++教程

Centos8搭建web服务器

本文主要是介绍Centos8搭建web服务器,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.su root   进入最高权限

2.Yum  install  httpd* -y   安装httpd服务

3.vim /etc/httpd/conf/httpd.conf  配置Apache

 

1.<Directory>

2.这之间为一组配置

3.<Dirctory>

4.#Listen  12.34.56.78:80

 Listen   127.0.0.1    更改Listen项(此项决定了Apache的监听地址和监听端口,第45行)

5.配置网页的HTML文件位置(128行左右),默认为/var/www/html     

         

6.systemctl restart httpd (每次修改配备文件后都需要重启服务)

7.systemctl status firewalld 查看防火墙状态(running为开启,q键可以退出)

8.systemctl start firewalld.service (开启防火墙)

9. firewall-cmd --zone=public --list-ports(查看防火墙开放端口)

10.cd  /var/www/html  (进入html文件)

11.touch index.html  (创建index.html文件)

12.vi index.html (此为空白文档需添加内容,例如:hello word)

13. systemctl  status  httpd  (查看Apache状态)

14.systemctl  start  httpd   (开启httpd服务)

15.vim /etc/sysconfig/network-scripts/ifcfg-ens33  (编辑网卡信息)

IPADDR=

NETMASK=

GATEWAY=

DHCP=static(此处修改为静态)

16.nmcli  connection  up  ens33 (若ifconfig没有显示网卡信息,则需要激活网卡)

17.在浏览器输入IP地址

这篇关于Centos8搭建web服务器的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!