温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

apache2.2.x+php5.5安装部署

发布时间:2020-06-16 16:03:51 来源:网络 阅读:439 作者:大官人007 栏目:web开发

1.安装apr,apr-util

tar -zxf apr-1.4.5.tar.gz

cd apr-1.4.5

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

make && make install

tar -zxf apr-util-1.3.12.tar.gz

cd apr-util-1.3.12

./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr-1-config

make && make install

2.安装pcre

unzip -o pcre-8.10.zip

cd pcre-8.10

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

make && make install

3.安装其他依赖

yum install –y zlib zlib-devel openssl openssl-devel

4.编译安装apache

tar zxf httpd-2.2.31.tar.gz

cd httpd-2.2.31

./configure \

--prefix=/usr/local/apach-2.2.31 \

--with-apxs2=/usr/local/apache-2.2.31/bin/apxs \

--enable-deflate \

--enable-expires \

--enable-headers \

--enable-modules=most \

--enable-so \

--with-ssl \

--enable-ssl \

--enable-cgid \

--enable-cgi \

--with-apr-util=/usr/local/apr-util \

--with-mpm=worker \

--enable-rewrite \

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

--with-included-apr

make && make install

5.安装php依赖

yuminstall –y zlib-devel libxml2-devel libjpeg-devel freetype-devel libpng-devel libxml2*libcurl* libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel xml2xml2-devel libxslt-devel

6.安装libiconv

tar -zxf libiconv-1.14.tar.gz

cd libiconv-1.14

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

make

make install

7.编译安装php5.5

tar -zxf php-5.5.20.tar.gz

cd php-5.5.20

./configure \

--prefix=/usr/local/php5.5.20 \

--enable-mysqlnd \

--with-mysql=mysqlnd \

--with-mysqli=mysqlnd \

--with-pdo-mysql=mysqlnd \

--enable-bcmath \

--with-gettext \

--with-xmlrpc \

--with-openssl \

--with-zlib \

--with-freetype-dir \

--with-gd \

--with-jpeg-dir \

--with-png-dir \

--with-iconv=/usr/local/libiconv \

--enable-short-tags \

--enable-sockets \

--enable-soap \

--enable-mbstring \

--enable-static \

--enable-gd-native-ttf \

--enable-zip \

--with-curl \

--with-xsl \

--enable-ftp \

--with-gettext \

--enable-opcache \

--with-libxml-dir

ln -s /usr/local/php5.5.20 /usr/local/php

cp php.ini-production /usr/local/php/lib/php.ini

8.配置apache支持php

1)添加主持.php后缀名

DirectotyIndex index.html index.php

 2)找到如下两行

AddType application/x-compress .Z

AddType application/x-gzip .gz .tgz

在后面添加

AddType application/x-httpd-php .php.phtml

AddType application/x-httpd-php-source.phps


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI