CentOS7安装apache并通过局域网其它电脑访问

1. 安装Apache组件

[root@mycentos shell]# yum install httpd

2. 安装成功后,检测有无httpd进程

[root@mycentos shell]# ps -e |grep httpd

3. 如没有,启用该服务

[root@mycentos shell]# systemctl restart httpd.service

4. 使用浏览器访问本机IP地址,如果显示链接失败,会显示显示拒绝访问;

应该是防火墙相关设置问题导致.和Apache配置文件httpd.conf中的ServerName问题

cd /etc/httpd/conf

vi httpd.conf

扫描二维码关注公众号,回复: 10577359 查看本文章

找到#ServerName example.com:80,去掉#并将示例网址改为localhost

开放80端口

5.关闭并禁用防火墙

[root@mycentos shell]# systemctl stop firewalld.service #停止防火墙服务

[root@mycentos Desktop]# systemctl disable firewalld.service #禁用防火墙开机启动服务
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
Removed symlink /etc/systemd/system/basic.target.wants/firewalld.service.

6.再次访问网站,能够成功登录

猜你喜欢

转载自www.cnblogs.com/xtmp/p/12656796.html
今日推荐