LAMP源码安装

Posted blsnt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LAMP源码安装相关的知识,希望对你有一定的参考价值。

1.1 安装apache

apache历史版本下载地址:点击这里
apr下载地址:点击这里
源码安装LAMP环境

1.1.1 下载软件:

个人习惯/server/tools 软件包目录
$ wget https://archive.apache.org/dist/httpd/httpd-2.4.33.tar.gz
$ wget http://www.apache.org/dist/apr/apr-1.6.5.tar.gz
$ wget http://www.apache.org/dist/apr/apr-util-1.6.1.tar.gz

1.1.2.编译安装apr

$ tar xf apr-1.6.5.tar.gz
$ cd apr-1.6.5/
$ ./configure --prefix=/usr/local/apr
$ make
$ make install

1.1.3 编译安装util

$ tar xf apr-util-1.6.1.tar.gz
$ cd apr-util-1.6.1/
$ ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr
$ make
$ make install

1.1.4 安装httpd

1.1.4.1 安装依赖

$ yum -y install pcre-devel zlib zlib-devel
$ tar xf httpd-2.4.33.tar.gz 
$ cd httpd-2.4.33/
./configure --prefix=/application/httpd-2.4.33 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-module=so --enable-deflate=shared --enable-expires=shared --enable-rewrite=shared --enable-cache --enable-file-cache --enable-mem-cache --enable-disk-cache --enable-static-support --enable-static-ab --disable-userdir --with-mpm=worker --enable-nonportable-atomics --disable-ipv6 --with-sendfile
$ make
$ make install

1.1.4.2 检查语法(在httpd的安装位置路径bin下执行此命令,也可设置环境变量)

$ ./apachectl -t
1.1.4.3 启动
$ ./apachectl -k start

1.1.4.4 查看编译的模块

$ ./apachectl -l
$ ./apachectl -M

1.2 php安装

1.2.1 安装依赖

yum install -y zlib libjpeg freetype libpng gd curl zlib-devel libxml2-devel libjpeg-devel freetype-devel libpng-devel gd-devel curl-devel libjpeg-turbo-devel libcurl-devel libxslt-devel libmcrypt-devel mhash mcrypt

1.2.2 下载php

php-5.5.38

$ tar xf php-5.5.38.tar.gz
$ cd php-5.5.38/
./configure --prefix=/application/php-5.5.38 --enable-mysqlnd --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-mbstring --with-mcrypt --with-gd --with-gettext --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --enable-short-tags --enable-static --with-xsl --enable-fpm --with-fpm-user=www --with-fpm-group=www --enable-opcache=no  --enable-ftp --with-apxs2=/application/httpd-2.4.33/bin/apxs
$ make
$ make install

复制解释器配置文件

cp /server/tools/php-5.5.38/php.ini-production /application/php-5.5.38/lib/php.ini

配置apache支持php

以上是关于LAMP源码安装的主要内容,如果未能解决你的问题,请参考以下文章

lamp源码安装出错及解决方案

LAMP源码安装

详解LAMP源码编译安装

LAMP环境官方最新源码编译安装

ubuntu下源码安装LAMP及Laravel

源码安装LAMP架构!