1. 下载apache: http://apache.freelamp.com//httpd,下载httpd-2.3.8.tar.gz
2. 解压:tar xvfz httpd-2.3.8.tar.gz
3.cd httpd-2.3.8
4./configure // 执行该目录下配置脚本程序
出错1:
checking for APR… no #找不到这个APR
configure: error: APR not found. Please read the documentation
解决方法
http://apache.freelamp.com/apr/apr-1.4.2.tar.bz2
下载apr-1.4.2.tar.bz2
tar -jxvf apr-1.4.2.tar.bz2
cd apr-1.4.2
./configure –prefix=/usr/local/apr
make
sudo make install
出错2:
checking for APR-util… no
configure: error: APR-util not found. Please read the documentation.
解决方法:
http://apache.freelamp.com//apr/ 下载
cd apr-util-1.3.10
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
make
sudo make instal
-----------------------------------------------------------------------------------
出错2最后还是没有解决,重新下载httpd-2.2.16,重新开始
tar xvfz http-2.2.16.tar.gz
cd http-2.2.16
1.首先安装apr apr-util
cd srclib/apr
./configure --prefix=/usr/local/apr
make
make install
cd ..
cd httpd-2.2.16/srclib/apr-util
./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
make
make install
2.安装apache,在
httpd-2.2.16目录下
./configure --prefix=/usr/local/apache --with-included-apr --enable-so --enable-rewrite=share --enable-proxy=share --enable-proxy-ajp=share --enable-dav=share --enable-dav-fs --with-apr=/usr/local/apr/ --with-apr-util=/usr/local/apr-util
make
make install
出错:
/bin/sh /usr/local/httpd-2.2.3/srclib/apr/libtool
--mode=install /usr/bin/install -c -m 755 libaprutil-1.la
/usr/local/apache2/lib
libtool: install: error: cannot install `libaprutil-1.la' to a directory not ending in /usr/local/apache22/lib
make[2]: *** [install] Error 1
解决方法:在configure后使用命令make clean,然后重新make, make install
终于安装好了
分享到:
相关推荐
Apache 安装与配置文档 Apache 安装与配置文档是 Apache 服务器的安装和配置指南。本文档将指导用户从安装 Apache 到配置 Apache 的整个过程。 一、Apache 安装 Apache 安装需要使用 root 用户进行安装。在安装...
apache安装配置详解,希望能帮助到每一位开发人员
下载适用于Linux的Apache安装程序。通常,官方提供的安装程序是tar.gz压缩格式。例如,你可能会找到名为httpd-version.tar.gz的文件,其中version是Apache的特定版本号。 安装过程分为以下几个步骤: 1. **解压...
本文将详细介绍如何在Linux环境中安装和配置Apache,包括所需的依赖包和基本步骤。 首先,让我们从安装Apache开始。在大多数Linux发行版中,你可以通过包管理器来安装Apache。例如,在Ubuntu或Debian上,使用`apt`...
6. **Apache安装搭建** - **RedHat系统下安装Apache**: - **下载**:从Apache官方网站获取适用于RedHat的源码包或RPM包。 - **解压**:如果是源码包,需要先解压缩,然后编译安装;如果是RPM包,可以使用`yum ...
### Apache安装详细介绍 #### 一、前言 随着互联网技术的发展,Web服务器成为了构建网站的基础之一。Apache作为一款开源的Web服务器软件,以其强大的功能、稳定性以及灵活性深受广大开发者的喜爱。本文旨在详细...
### 在 Windows 下为 Apache 安装多个服务 #### 概述 在 Windows 操作系统下配置 Apache 服务器,可以通过设置多个虚拟主机(Virtual Hosts)的方式实现为同一个服务器安装并运行多个网站。这种方式不仅能够提高...
### Linux下Apache安装详解 在Linux环境中安装Apache服务器是一项基础且关键的任务,尤其对于搭建Web服务、测试环境或运行各种基于Web的应用程序至关重要。本文将深入解析Linux环境下Apache的安装流程,涵盖解压缩...
下面将详细解释这些文件的作用和Apache安装过程中的相关知识点。 1. `controls.dll`:这是一个动态链接库(DLL)文件,通常包含一组特定的功能或控件,供其他应用程序调用。在Apache安装中,它可能用于提供图形用户...
在Ubuntu中安装apache 安装指令: sudo apt-get install apache2 安装结束后: 产生的启动和停止文件是:/etc/init.d/apache2 启动: sudo apache2ctl -k start 停止: sudo apache2ctl -k stop 重新启动: sudo...
### RHEL5 Apache安装配置详解 #### 一、Apache安装概述 在Red Hat Enterprise Linux 5(RHEL5)环境中安装Apache是搭建Web服务器的重要步骤之一。Apache作为世界上最流行的Web服务器软件之一,提供了强大的功能来...
描述在linux下安装apache的整个详细过程
**Apache安装及JBoss部署说明文档** 在信息技术领域,服务器的搭建与应用部署是至关重要的环节,本文档将详述如何在操作系统上安装Apache HTTP Server并配置部署Java应用程序服务器JBoss。Apache作为世界上最流行的...
【winxp+svn+apache安装配置全说明】 在Windows XP SP3环境下,搭建Subversion(SVN)版本控制系统,通常需要结合Apache HTTP Server作为前端Web服务器。以下是详细的安装配置步骤: 1. **下载所需软件** - ...