准备
# iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
# iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
# service iptables save
安装启动
#yum install httpd
#/etc/init.d/httpd start 启动Apache
#chkconfig httpd on 设为开机启动
#vi /etc/httpd/conf/httpd.conf 服务器配置文件(这里保持默认),详细配置可以自己看http://www.linuxidc.com/Linux/2014-12/111030.htm
#cd /var/www/html 切换到网站根目录
#echo "hello" > index.html 创建网站主页