Linux安装配置apache

1.准备工作

下载 gcc gcc-c++ 编译,安装

http://apr.apache.org/download.cgi 在此下载 apr 和 apr-uti  编译,安装。

并下载pcre 编译,安装。http://pcre.org/

也可    yum -y install gcc gcc-c++ apr apr-uti pcre pcre-devel

获取APACHE软件: http://httpd.apache.org/ 

2.安装步骤:

解压源文件:

1 tar zvxf httpd-2.2.21.tar.gz 
2 cd httpd-2.2.21
3 ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --with-apr=/usr/local/apr --with-apr-util=/usr/local/arp-util --with-pcre=/usr/local/pcre
4 make
5 make install

运行./configure 命令进行编译源代码,

--prefix=/usr/local/apach2 是设置编译安装到的系统目录,

--enable-s  参数是使httpd服务能够动态加载模块功能,

--enable-rewrite  是使httpd服务具有网页地址重写功能。

--with-apr=APR的安装目录 --with-apr-util=APR-UTIL的安装目录 --with-pcre=PCRE安装目录  PS:编译时尽量不填写,若提示哪个软件找不到在加上目录,以防报不知名错误

3.启动apache:

/usr/local/apache2/bin/apachectl start

4.将apache加入到系统服务,用service命令来控制apache的启动和停止

首先以apachectl脚本为模板生成Apache服务控制脚本:

grep -v "#" /usr/local/apache2/bin/apachectl  > /etc/init.d/apache

用vi编辑Apache服务控制脚本/etc/init.d/apache:

vi /etc/init.d/apache

在文件最前面插入下面的行,使其支持chkconfig命令:

#!/bin/sh             

# chkconfig: 2345 85 15             

# description: Apache is a World Wide Web server.

保存后退出vi编辑器,执行下面的命令增加Apache服务控制脚本执行权限:

chmod  +x  /etc/init.d/apache

执行下面的命令将Apache服务加入到系统服务:

chkconfig --add apache

执行下面的命令检查Apache服务是否已经生效:

chkconfig --list apache             

命令输出类似下面的结果: 

apache          0:off 1:off 2:on 3:on 4:on 5:on 6:off      

表明apache服务已经生效,在2、3、4、5运行级别随系统启动而自动启动,以后可以使用service命令控制Apache的启动和停止。

启动Apache服务: service apache start   

停止Apache服务:        service apache stop   

执行下面的命令关闭开机自启动:  chkconfig apache off

安装时错误:

    libtool: link: cannot find the library `/usr/local/apr1.5.0/lib/libapr-1.la' or unhandled argument `/usr/local/apr1.5.0/lib/libapr-1.la'
make[2]: *** [htpasswd] Error 1
make[2]: Leaving directory `/usr/local/httpd-2.4.7/support'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/httpd-2.4.7/support'
make: *** [all-recursive] Error 1
    make时报这个错误,在网上搜索无果后,我仔细看了下,他是在复制apr文件时路径出错,我之前装了一个apr-1.5.0到/usr/local/apr1.5.0这个目录,之后我没有卸载,直接把此目录删除重装了个/usr/local/apr

至此导致一些路径参数没有被覆盖。 报错~

你可能感兴趣的:(Linux安装配置apache)