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地址