美文网首页Linux终极玩家我用 LinuxLinux
LAMP搭建系列一、Apache安装 (源码)

LAMP搭建系列一、Apache安装 (源码)

作者: 四月不见 | 来源:发表于2017-11-13 17:56 被阅读83次

    查看完整目录:【LAMP搭建系列】

    前言

    在这里我使用的是源码安装的方法,不是很了解Linux下源码安装的可以查看我的另一篇文章《Linux软件安装管理之——源码安装详解》。本人的Linux发行版本为Ubuntu 16.04,不过源码安装的方法所有的Linux发行版本基本都通用,所以也不用太担心你的系统发行版和我的不一样;安装apache版本为httpd-2.4.29。

    使用源码安装的一个好处就是,你可以安装最新版本的软件,也可以自定义安装你想要的其它版本。

    安装Apache HTTP Server 2.4.2

    参考(官方文档):http://httpd.apache.org/docs/2.4/install.html

    1、到官网去下载httpd-2.4.29的源码包

    官方网址为:http://httpd.apache.org/

    httpd-2.4.29下载地址为:http://mirrors.hust.edu.cn/apache//httpd/httpd-2.4.29.tar.bz2

    wget http://mirrors.tuna.tsinghua.edu.cn/apache//httpd/httpd-2.4.29.tar.bz2

    2、解压

    tar -xvf httpd-2.4.29.tar.bz2

    3、新建目标文件夹(即apache的安装目录)

    mkdir /usr/local/apache2

    4、配置

    ./configure --prefix=/usr/local/apache2 --enable-module=shared

    在这个步骤的时候会报几个错误,是因为apache的一些依赖。安装Apache的时候,必需还要安装apr、apr-util、pcre,并在配置时指定相关参数。下面就是给出这些错误的解决方法:

    1)错误1:

    checking for APR... no

    configure: error: APR not found.  Please read the documentation.

    wget http://mirror.bit.edu.cn/apache//apr/apr-1.6.3.tar.bz2

    wget http://mirror.bit.edu.cn/apache//apr/apr-util-1.6.1.tar.bz2

    tar -xvf apr-1.6.3.tar.bz2 -C srclib/

    tar -xvf apr-util-1.6.1.tar.bz2 -C srclib/

    mv srclib/apr-1.6.3/ srclib/apr

    mv srclib/apr-util-1.6.1/ srclib/apr-util

    ./configure --with-included-apr

    注:这部份命令都是在httpd-2.4.29目录内执行的。所有的源码压缩包解压后你都可以将它删除。

    以上的解决方法为官方的给出的,你也可以使用另外一种方法,即使用源码安装的方法分别安装apr与apr-util。

    #安装:apr

    wget http://mirror.bit.edu.cn/apache//apr/apr-1.6.3.tar.bz2

    tar -xvf apr-1.6.3.tar.bz2

    cd apr-1.6.3

    ./configure --prefix=/usr/local/apr

    make

    make install

    # 安装Apr-util 在./confiure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr

    #其他步骤类似。

    #安装好以上两个依赖后,回到httpd-2.4.29目录,配制:

    ./configure  --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/

    这时就会报出第二个错误

    2)错误2:

    checking for pcre-config... false

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

    wget https://ftp.pcre.org/pub/pcre/pcre-8.41.tar.bz2

    tar -xvf pcre-8.41.tar.bz2

    cd pcre-8.41/

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

    make

    make install

    #安装好pcre后,回到httpd-2.4.29目录,配制:

    ./configure --with-pcre=/usr/local/pcre

    5、编译

    make

    6、安装

    make install

    完成该步骤,如果没报任何错误的话,则说明你的apache已经安装完成了,下面则进入我们的测试阶段。

    测试运行

    1、配置文件:

    进入到你的apache安装目录/usr/local/apache2/conf/,打开文件httpd.conf,配制以下几项:

    1)ServerName localhost:80

    2)DocumentRoot "/my_php/www"  #该目录就是以后你的项目根目录

    3)<Directory "/my_php/www">

    先配置这三个地方,其它其它的配置可根据后期需求再作修改。

    2、常用操作:

    apachectl -k start   # 启动 或 httpd -k start

    apachectl -k restart   # 重启 或  httpd -k restart

    apachectl -k stop   # 停止 或  httpd -k stop

    3、测试:

    启动apache

    # 先切换到安装完成后的目录/usr/local/apache2/bin

    ./apachectl -k start

    然后在浏览器里输入你的ip地址,如果出现It Works!,则说明你的apache已经搭建成功了。

    附:

    1)查看80端口监听状态:netstat -nltp | grep 80

    2)查看httpd服务启动状态:ps -aux | grep httpd

    相关文章

      网友评论

      本文标题:LAMP搭建系列一、Apache安装 (源码)

      本文链接:https://www.haomeiwen.com/subject/lswamxtx.html