Httpd2.4.10+Mysql5.6.21+Php5.61編譯安裝(PHP整合為HTTPD的模組)

來源:互聯網
上載者:User

標籤:httpd apache mysql php lamp php模組

一、編譯安裝Httpd2.4.10

1、解決依賴關係

httpd-2.4.10需要較新版本的apr和apr-util,因此需要事先對其進行升級。升級方式有兩種,一種是通過原始碼編譯安裝,一種是直接升級rpm包。這裡選擇使用編譯原始碼的方式進行,在Apache官方網站下載apr 與apr-util碼源包。

1)編譯安裝apr

# tar xf apr-1.5.1.tar.bz2

# cd apr-1.5.1

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

# make && make install

2) 編譯安裝apr-util

# tar xf apr-util-1.5.4.tar.bz2

# cd apr-util-1.5.4

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

# make && make install

3) httpd-2.4.10編譯過程也要依賴於pcre-devel軟體包,需要事先安裝。此軟體包系統光碟片內建,因此,找到並用yum安裝即可,也要裝上Server Platform Development組包與"Development tools"

2、編譯安裝Httpd2.4.10

首先下載httpd-2.4.4到本地,而後執行如下命令進行編譯安裝過程:

# tar xf httpd-2.4.10.tar.bz2

# cd httpd-2.4.10

# ./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-modules=most --enable-mpms-shared=all --with-mpm=event

# make && make install

參數說明:

--prefix=/usr/local/apache 安裝路徑

--sysconfdir=/etc/httpd 設定檔路徑

--enable-so 允許運行時載入DSO模組

--enable-ssl 如果不載入將無法使用使用https

--enable-cgi 允許使用cgi指令碼

--enable-rewrite 支援URL重寫機制

--with-zlib 支援網路通用壓縮庫

--with-pcre 支援pcre

--with-apr=/usr/local/apr 指定apr的安裝路徑

--with-apr-util=/usr/local/apr-util/ 指定apr-util的安裝路徑

--enable-modules=most 啟用大多數常用的模組

--enable-mpms-shared=all 啟用MPM所有支援的模式

--with-mpm=event 預設使用enevt模式

補充:

(1)構建MPM為靜態模組

在全部平台中,MPM都可以構建為靜態模組。在構建時選擇一種MPM,連結到伺服器中。如果要改變MPM,必須重新構建。為了使用指定的MPM,請在執行configure指令碼 時,使用參數 --with-mpm=NAME。NAME是指定的MPM名稱。編譯完成後,可以使用 ./httpd -l 來確定選擇的MPM。 此命令會列出編譯到伺服器程式中的所有模組,包括 MPM。

(2)構建 MPM 為動態模組

在Unix或類似平台中,MPM可以構建為動態模組,與其它動態模組一樣在運行時載入。 構建 MPM 為動態模組允許通過修改LoadModule指令內容來改變MPM,而不用重新構建伺服器程式。在執行configure指令碼時,使用--enable-mpms-shared選項即可啟用此特性。當給出的參數為all時,所有此平台支援的MPM模組都會被安裝。還可以在參數中給出模組列表。預設MPM,可以自動選擇或者在執行configure指令碼時通過--with-mpm選項來指定,然後出現在產生的伺服器設定檔中。編輯LoadModule指令內容可以選擇不同的MPM。

1)匯出標頭檔;以目錄連結的形式來實現

ln -sv /usr/local/apache/include/ /usr/include/httpd

2)輸出二進位程式

# vim /etc/profile.d/httpd.sh

export PATH=/usr/local/apache/bin:$PATH

# . /etc/profile.d/httpd.sh

# httpd -V    顯示httpd版本資訊

3)匯出man檔案

# vim /etc/man.config

MANPATH /usr/local/apache/man

3、修改httpd的主設定檔,設定其Pid檔案的路徑

編輯/etc/httpd/httpd.conf,添加如下行即可:

PidFile "/var/run/httpd.pid"

4、提供SysV服務指令碼/etc/rc.d/init.d/httpd,內容如下:

#!/bin/bash

#

# httpd Startup script for the Apache HTTP Server

#

# chkconfig: - 85 15

# description: Apache is a World Wide Web server. It is used to serve \

# HTML files and CGI.

# processname: httpd

# config: /etc/httpd/conf/httpd.conf

# config: /etc/sysconfig/httpd

# pidfile: /var/run/httpd.pid

# Source function library.

. /etc/rc.d/init.d/functions

if [ -f /etc/sysconfig/httpd ]; then

. /etc/sysconfig/httpd

fi

# Start httpd in the C locale by default.

HTTPD_LANG=${HTTPD_LANG-"C"}

# This will prevent initlog from swallowing up a pass-phrase prompt if

# mod_ssl needs a pass-phrase from the user.

INITLOG_ARGS=""

# Set HTTPD=/usr/sbin/httpd.worker in /etc/sysconfig/httpd to use a server

# with the thread-based "worker" MPM; BE WARNED that some modules may not

# work correctly with a thread-based MPM; notably PHP will refuse to start.

# Path to the apachectl script, server binary, and short-form for messages.

apachectl=/usr/local/apache/bin/apachectl

httpd=${HTTPD-/usr/local/apache/bin/httpd}

prog=httpd

pidfile=${PIDFILE-/var/run/httpd.pid}

lockfile=${LOCKFILE-/var/lock/subsys/httpd}

RETVAL=0

start() {

echo -n $"Starting $prog: "

LANG=$HTTPD_LANG daemon --pidfile=${pidfile} $httpd $OPTIONS

RETVAL=$?

echo

[ $RETVAL = 0 ] && touch ${lockfile}

return $RETVAL

}

stop() {

echo -n $"Stopping $prog: "

killproc -p ${pidfile} -d 10 $httpd

RETVAL=$?

echo

[ $RETVAL = 0 ] && rm -f ${lockfile} ${pidfile}

}

reload() {

echo -n $"Reloading $prog: "

if ! LANG=$HTTPD_LANG $httpd $OPTIONS -t >&/dev/null; then

RETVAL=$?

echo $"not reloading due to configuration syntax error"

failure $"not reloading $httpd due to configuration syntax error"

else

killproc -p ${pidfile} $httpd -HUP

RETVAL=$?

fi

echo

}

# See how we were called.

case "$1" in

start)

start

;;

stop)

stop

;;

status)

status -p ${pidfile} $httpd

RETVAL=$?

;;

restart)

stop

start

;;

condrestart)

if [ -f ${pidfile} ] ; then

stop

start

fi

;;

reload)

reload

;;

graceful|help|configtest|fullstatus)

$apachectl [email protected]

RETVAL=$?

;;

*)

Echo$ "Usage: $prog

{start|stop|restart|condrestart|reload|status|fullstatus|graceful|help|configtest}"

exit 1

esac

exit $RETVAL

而後為此指令碼賦予執行許可權:

# chmod +x /etc/rc.d/init.d/httpd

加入服務列表:

# chkconfig --add httpd

接下來就可以啟動服務進行測試了

Service httpd start

ss -tunl | grep 80

tcp    LISTEN    0      128                  :::80                  :::*

然後訪問伺服器IP地址,頁面顯示  It works!證明正常

提示:如果不能停止httpd是因為Pidfile檔案路徑沒有寫正確。

二、安裝mysql-5.6.21

1、準備資料存放的檔案系統(由於資料庫會不斷的加大,所以選擇放置在一個邏輯卷上)

建立一個邏輯卷,並將其掛載至特定目錄即可。這裡不再給出過程。

這裡假設其邏輯卷的掛載目錄為/mydata,而後需要建立/mydata/data目錄做為mysql資料的存放目錄。

2、建立使用者以安全方式運行進程:

# groupadd -r mysql

# useradd -g mysql -r -s /sbin/nologin -M -d /mydata/data mysql

# chown -R mysql:mysql /mydata/data

3、安裝並初始化mysql-5.6.21

# tar xf mysql-5.6.21-linux-glibc2.5-i686 -C /usr/local

# cd /usr/local/

# ln -sv mysql-5.5.28-linux2.6-i686 mysql

# cd mysql

# chown -R mysql:mysql .

# scripts/mysql_install_db --user=mysql --datadir=/mydata/data

# chown -R root .

4、為mysql提供主設定檔:

# cd /usr/local/mysql

# cp support-files/my-large.cnf /etc/my.cnf

並修改此檔案中thread_concurrency的值為你的CPU個數乘以2,比如這裡使用如下行:

thread_concurrency = 2

另外還需要添加如下行指定mysql資料檔案的存放位置:

datadir = /mydata/data

5、為mysql提供sysv服務指令碼:

# cd /usr/local/mysql

# cp support-files/mysql.server /etc/rc.d/init.d/mysqld

# chmod +x /etc/rc.d/init.d/mysqld

添加至服務列表:

# chkconfig --add mysqld

# chkconfig mysqld on

而後就可以啟動服務測試使用了。

6、輸出mysql的man手冊至man命令的尋找路徑:

編輯/etc/man.config,添加如下行即可:

MANPATH /usr/local/mysql/man

7、輸出mysql的標頭檔至系統標頭檔路徑/usr/include:

這可以通過簡單的建立連結實現:

# ln -sv /usr/local/mysql/include /usr/include/mysql

8、輸出mysql的庫檔案給系統庫尋找路徑:

# echo ‘/usr/local/mysql/lib‘ > /etc/ld.so.conf.d/mysql.conf

而後讓系統重新載入系統庫:

# ldconfig

9、修改PATH環境變數,讓系統可以直接使用mysql的相關命令

Vim /etc/profile.d/mysqld.sh

Export PATH=/usr/local/mysql/bin:$PATH

. /etc/profile.d/mysqld.sh

三、編譯安裝php-5.4.13

1、解決依賴關係:

請配置好yum源(可以是本地系統光碟片)後執行如下命令:

# yum -y groupinstall " Desktop Platform Development"

如果想讓編譯的php支援mcrypt擴充,在http://rpm.pbone.net下載

並安裝之:

libmcrypt-2.5.7-5.el5.i386.rpm

libmcrypt-devel-2.5.7-5.el5.i386.rpm

2、編譯安裝php-5.6.1

首先下載源碼包至本地目錄

# tar xf php-5.6.1.tar.xz

# cd php-5.6.1

# ./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-openssl --with-

mysqli=/usr/local/mysql/bin/mysql_config --enable-mbstring --with-freetype-dir --with-jpeg-dir

--with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --enable-sockets --with-

apxs2=/usr/local/apache/bin/apxs --with-mcrypt --with-config-file-path=/etc --with-config-

file-scan-dir=/etc/php.d --with-bz2 --enable-maintainer-zts

說明:

1、這裡為了支援apache的worker或event這兩個MPM,編譯時間使用了--enable-maintainer-zts選項。

2、如果使用PHP5.3以上版本,為了連結MySQL資料庫,可以指定mysqlnd,這樣在本機就不需要先安裝MySQL

或MySQL開發包了。mysqlnd從php 5.3開始可用,可以編譯時間綁定到它(而不用和具體的MySQL用戶端庫綁定

形成依賴),但從PHP 5.4開始它就是預設設定了。

# ./configure --with-mysql=mysqlnd --with-pdo-mysql=mysqlnd --with-mysqli=mysqlnd

apxs2=/usr/local/apache/bin/apxs是將PHP編譯為httpd的模組來運行

如果在編譯過程中缺少什麼rpm包,可以在rpm.pbone.net下載

# make

# make test

# make intall

#切換到PHP源碼包拷貝

為php提供設定檔:

# cp php.ini-production /etc/php.ini

3、 編輯apache設定檔httpd.conf,以apache支援php

# vim /etc/httpd/httpd.conf

1、添加如下二行

AddType application/x-httpd-php .php

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

2、定位至DirectoryIndex index.html

修改為:

DirectoryIndex index.php index.html

而後重新啟動httpd,或者重新載入設定檔即可測試,修改/usr/local/apache/htdocs/下的index.php為

 

<?php

Phpinfo();

?>

 

四、安裝xcache,為php加速:

1、 安裝xcache

下載xcache,地址為:http://xcache.lighttpd.net/

# tar xf xcache-3.2.0.tar.gz

# cd xcache-3.2.0

# /usr/local/php/bin/phpize

# ./configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config

# make && make install

安裝結束時,會出現類似如下行:

Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-zts-20131226/

2、編輯php.ini,整合php和xcache:

首先將xcache提供的範例配置匯入php.ini

# mkdir /etc/php.d

# cp xcache.ini /etc/php.d

說明:xcache.ini檔案在xcache的源碼目錄中。

接下來編輯/etc/php.d/xcache.ini,找到zend_extension開頭的行,修改為如下行:

zend_extension = /usr/local/php/lib/php/extensions/no-debug-zts-20131226/xcache.so

注意:如果php.ini檔案中有多條zend_extension指令行,要確保此新增的行排在第一位。

本文出自 “icesnowfq的部落格” 部落格,請務必保留此出處http://icesnowfq.blog.51cto.com/2785832/1565216

Httpd2.4.10+Mysql5.6.21+Php5.61編譯安裝(PHP整合為HTTPD的模組)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.