linux 下安装apache 快速教程

最近自学linux,看鸟哥的文章。提到了apache,所以在虚拟机redhat 5下安装了一把,

结合国内外文章写下快速可行的教程:

-------------------------------------------------------------------------------

系统版本: # cat /etc/redhat-release


Red Hat Enterprise Linux Server release 5.4 (Tikanga)

一 步骤概览:(摘自apache官网)

Download $ http://httpd.apache.org/download.cgi
Extract $ gzip -d httpd-NN.tar.gz
$ tar xvf httpd-NN.tar
$ cd httpd-NN
Configure $ ./configure --prefix=PREFIX
Compile $ make
Install $ make install
Customize $ vi PREFIX/conf/httpd.conf
Test PREFIX/bin/apachectl -k start

NN must be replaced with the current version number, and PREFIX must be replaced with the filesystem path under which the server should be installed. If PREFIX is not specified, it defaults to /usr/local/apache2.

--NN 代表版本号,PREFIX指定安装路径,不指定的话默认:/usr/local/apache2.

二、系统要求:(不满足后续安装会提示错误)

APR and APR-Util

Perl-Compatible Regular Expressions Library (PCRE)


三、安装步骤:满足系统要求

1.解决apr not found问题

   [root@yahootest]# tar -zxf apr-1.4.5.tar.gz

   [root@yahoo apr-1.4.5]#./configure --prefix=/usr/local/apr

   [root@yahoo apr-1.4.5]#make

   [root@yahoo apr-1.4.5]#make install

 2.解决APR-util not found问题

   [root@yahoo test]# tar -zxfapr-util-1.3.12.tar.gz

   [root@yahooapr-util-1.3.12]# ./configure --prefix=/usr/local/apr-util-with-apr=/usr/local/apr/bin/apr-1-config

  [root@yahoo apr-util-1.3.12]# make
  [root@yahoo apr-util-1.3.12]# make install

3  ../configure仍提示APR-util notfound,增加--with-apr=/usr/local/apr--with-apr-util=/usr/local/apr-util后出现

configure: error: pcre-config for libpcre not found. PCRE isrequired and available from http://pcre.org/

 

#./configure –help | grep pcre

--with-pcre=PATH       Use external PCRE library

 

下载:http://sourceforge.net/projects/pcre

#unzip -o pcre-8.10.zip

#cd pcre-8.10

#./configure --prefix=/usr/local/pcre

#make

#make install

4.编译Apache

  [root@yahoo httpd-2.3.12-beta]# ./configure--prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util

  --with-pcre=/usr/local/pcre/

  [root@yahoo httpd-2.3.12-beta]# make
  [root@yahoo httpd-2.3.12-beta]# make install

  [root@yahoo httpd-2.3.12-beta]# /usr/local/apache2/bin/apachectlstart



----------------------------

present  by   dylan.








posted @   一锤子技术员  阅读(3)  评论(0编辑  收藏  举报  
编辑推荐:
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 张高兴的大模型开发实战:(一)使用 Selenium 进行网页爬虫
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构
点击右上角即可分享
微信分享提示