码迷,mamicode.com
首页 > Web开发 > 详细

centos6.5-搭建Apache

时间:2017-03-11 11:42:45      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:脚本   service   linux   title   准备工作   解决   not   local   domain   

准备工作

1.关闭防火墙

service iptables stop

2.关闭selinux安全机制

setenforce 0

3.卸载rpm格式的httpd

技术分享

这说明已经安装了rpm格式的软件包。所以要卸载它。

4.卸载

rpm -e httpd –nodeps

二、安装httpd

 

1、下载apache

    wget http://archive.apache.org/dist/httpd/httpd-2.2.17.tar.gz

2、解压压缩包

    tar xf httpd-2.2.17.tar.gz –C /usr/src

3、编译源码包,并且安装

    (1)cd httpd-2.2.17

    

./configure --prefix=/usr/local/httpd --enable-so --enable-rewrite --enable-charset-lite --enable-cgi

 

技术分享

编译完成后,如上图,说明已经编译成功

如果出现以下错误

技术分享

则在编译时入加 --with-included-apr 即可解决。

优化路径

    ln -s /usr/local/httpd/bin/* /usr/local/bin/

cp /usr/local/httpd/bin/apachectl   /etc/init.d/httpd

4.  vi /etc/init.d/httpd  #编辑启动脚本,增加红色部分内容

    #!/bin/sh

    #chkconfig:345 66 88

    #description:http apache

解释:

    345 66 88表示345运行级别是开启的,66为服务启动顺序,88服务为停止顺序。

 

    4chmod +x /etc/init.d/httpd

         chkconfig --add httpd

         chkconfig --list httpd

5、启动服务

    service httpd start

    报错1httpd: Could not reliably determine the server‘s fully qualified domain name, using ::1 for ServerName

    解决:vim /usr/local/httpd/conf/httpd.conf

       97 #ServerName www.example.com:80

       98 ServerName localhost:80

centos6.5-搭建Apache

标签:脚本   service   linux   title   准备工作   解决   not   local   domain   

原文地址:http://www.cnblogs.com/pangbing/p/6534319.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!