首先切换到root账号下,执行httpd的安装
yum install httpd -y
安装完成
进入/var/www/html/目录下
cd /var/www/html/
创建index.html,在里面随便打上一句话,然后保存退出
vi index.html
This is 192.188.5.132!
:wq
启动httpd
systemctl start httpd
(CentOS6启动好像是下面的命令)
service httpd start
测试
curl http://127.0.0.1:80/
或者
curl http://192.168.5.132:80/
成功显示了,刚才打的那句话。
用外部电脑进行访问测试,显示异常
关闭掉Linux的防火墙
(暂时关闭)
systemctl stop firewalld
(永久关闭)
systemctl disable firewalld
再次刷新浏览器
结束