红联Linux门户
Linux帮助

centos下面配置lamp,如果安装apache完成后,访问ip不出现欢迎页,

发布时间:2015-11-10 16:09:19来源:linux网站作者:leadway123

centos下面配置lamp,如果安装apache完成后,访问ip不出现欢迎页,把防火墙关闭即可.


防火墙的常见命令

CentOS 配置防火墙操作实例(启、停、开、闭端口)

注:防火墙的基本操作命令:

查询防火墙状态:

[root@localhost ~]# service   iptables status<回车>

停止防火墙:

[root@localhost ~]# service   iptables stop <回车>

启动防火墙:

[root@localhost ~]# service   iptables start <回车>

重启防火墙:

[root@localhost ~]# service   iptables restart <回车>

永久关闭防火墙:

[root@localhost ~]# chkconfig   iptables off<回车>

永久关闭后启用:

[root@localhost ~]# chkconfig   iptables on<回车>


1、查看防火墙状态

[root@localhost ~]# service iptables status<回车>

centos下面配置lamp,如果安装apache完成后,访问ip不出现欢迎页,

2、编辑/etc/sysconfig/iptables文件。我们实例中要打开8080端口和9990端口

用编辑器打开/etc/sysconfig/iptables

centos下面配置lamp,如果安装apache完成后,访问ip不出现欢迎页,

3、依葫芦画瓢,我们添加8080端口和9990端口

centos下面配置lamp,如果安装apache完成后,访问ip不出现欢迎页,

4、保存/etc/sysconfig/iptables文件,并在终端执行

[root@localhost ~]# service iptables restart <回车>

centos下面配置lamp,如果安装apache完成后,访问ip不出现欢迎页,

5、从新查看防火墙状态

[root@localhost ~]# service iptables status<回车>

centos下面配置lamp,如果安装apache完成后,访问ip不出现欢迎页,

6、这时候,服务器的8080和9990端口就可以对外提供服务了。

7、其他端口的开放模式就是类似如此开放模式。


Fedora 23如何安装LAMP服务器:http://www.linuxdiyf.com/linux/15640.html

Debian 8 Jessie安装LAMP服务器教程:http://www.linuxdiyf.com/linux/14481.html

在Ubuntu上搭建LAMP服务器+Wiki:http://www.linuxdiyf.com/linux/12107.html

CentOS装LAMP服务器(Apache2+PHP5+MySQL):http://www.linuxdiyf.com/linux/765.html

修改Ubuntu 13.04 LAMP服务器端口号:http://www.linuxdiyf.com/linux/11424.html