Linux配置APACHE2.0.55 +PHP5.1.1+MYSQL5.0.16+GD庫(轉)

BSDLite發表於2007-08-11
Linux配置APACHE2.0.55 +PHP5.1.1+MYSQL5.0.16+GD庫(轉)[@more@]redhat linux9.0下配置APACHE2.0.55 +PHP5.1.1+MYSQL5.0.16+GD庫

首先,伺服器GCC要有,不然什麼都不能做.可以用gcc -v來檢視是否安裝了GCC,
#gcc -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/3.2.3/specs
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --host=i386-redhat-linux
Thread model: posix
gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-34)

有以上類似資訊說明已有GCC,
如果你沒有,請先拿安裝光碟裝好它

請下載以下所有的東西:
httpd-2.0.55.tar.gz
MySQL-client-5.0.16-0.i386.rpm
MySQL-server-5.0.16-0.i386.rpm
MySQL-devel-5.0.16-0.i386.rpm
php-5.1.1.tar.gz

ZendOptimizer-2.5.3-linux-glibc21-i386.tar.gz

gd-2.0.28.tar.gz
libxml2-2.6.11.tar.gz
zlib-1.2.1.tar.gz
jpegsrc.v6b.tar.gz
libpng-1.2.5.tar.gz

xpm-3.4k-2.i386.rpm
gd-devel-1.8.4-11.i386.rpm

可能你的電腦不需要這麼多.但最好都下載吧.

不過,可能你看到這貼子的時候會有以上軟體新的版本下載了.看著辦吧.

開始裝吧>>>>>>>>>>>>>>>>>>>>>>>>>

先安裝MYSQL 伺服器

#rpm -ivh MySQL-server-5.0.16-0.i386.rpm

接著客戶端

#rpm -ivh MySQL-client-5.0.16-0.i386.rpm
安裝mysql-devel
#rpm -ivh MySQL-devel-5.0.16-0.i386.rpm(沒有它不能安裝php5.1.1)

安裝好後試試能不能用

#mysql
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 27651 to server version: 4.0.20-standard
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.

說明OK
請自己改mysql的密碼

安裝GD庫基本包

#rpm -ivh gd-devel-1.8.4-11.i386.rpm

安裝XPM支援

#rpm -ivh xpm-3.4k-2.i386.rpm

安裝libxml2 (記得PHP5.1.1只支援libxml2-2.6.11以上版本)
#tar zxvf libxml2-2.6.11.tar.gz
#cd libxml2-2.6.11
#./configure
#make
#make install

開始裝GD庫支援
-------------------------------------------------------
ZLIB
#tar zxvf zlib-1.2.1.tar.gz
#cd zlib-1.2.1
#./configure
#make
#make install

JPEGSRC
#tar zxvf jpegsrc.v6b.tar.gz
#cd jpegsrc-6b
#./configure
#make
#make install-lib
#make install

LIBPNG
#tar zxvf libpng-1.2.5.tar.gz
#cd libpng-1.2.5
#cp scripts/makefile.std Makefile
#make
#make install

最後是GD2.*

gd-2.0.28
#tar zxvf gd-2.0.28.tar.gz
#cd gd-2.0.28
#./configure --with-png=/usr/local --with-jpeg=/usr/local --with-freetype=/usr
#make
#make install
----------------------------------------------
上面一切都很順利的話,GD就算成功的安裝上了. 如果有問題,應該是缺少支援包,總之是少什麼就下載什麼來安裝上.

跟著下來,開始安裝APAHCHE2和PHP5

#tar zxvf httpd-2.0.55.tar.gz
#cd httpd-2.0.55
#./configure --prefix=/usr/local/apache2 --enable-module=so
#make
#make install

#tar zxvf php-5.1.1.tar.gz
#cd php-5.1.1
#./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-jpeg-dir=/usr/local --with-png-dir=/usr/local --with-gd=/usr/local --enable-trace-vars --with-zlib-dir=/usr/local -with-mysql=/var/lib/mysql
#make
#make install
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
我是把他們分別安裝在/usr/local/apache2 & PHP目錄下的
所有的安裝工作做好了,接著我們來配置.

複製PHP.INI檔案到正確位置
在PHP目錄下執行
#cp php.ini-dist /usr/local/php/lib/php.ini

編輯apache配置檔案httpd.conf
#vi /usr/local/apache2/conf/httpd.conf

要改的有如下幾處:

一般都在
#AddType application/x-tar .tgz
下加一行
AddType application/x-httpd-php .php

還有找到
DirectoryIndex index.html index.html.var
在後面加 index.php 讓它把index.php做為預設頁

再找
#ServerName
把#去掉,後面的IP改成你的IP.

找到
DocumentRoot "/usr/local/apache2/htdocs"
把/usr/local/apache2/htdocs改為你存放網頁檔案的路徑
比如我是放在/myweb目錄下,所以我以後上傳PHP檔案就放在/myweb目錄下,然後用IP訪問,就能看到首頁了

差不多就這些了,至於apache2其它最佳化,請看 裡的apache配置那一分類.

儲存httpd.conf檔案.

啟動它
# /usr/local/apache2/bin/apachectl start
如果沒有出錯,寫一個測試頁放到你網頁目錄下, 我的就是上面所說的 /myweb
#vi /home/easy/index.php
phpinfo();

儲存.試試在測試器裡打IP進去就可以看到PHPINFO頁了

好了.如無意外.你現在可以放心在你的機器上執行PHP指令碼連線mysql了.

用ZendOptimizer-2.5.3加速PHP

#tar zxvf ZendOptimizer-2.5.3-linux-glibc21-i386.tar.gz
#cd ZendOptimizer-2.5.3-linux-glibc21-i386
#./install.sh

一路預設下去應該就好了.
再看看測試頁,

找找是不是這樣的?
This program makes use of the Zend Scripting Language Engine:
Zend Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies with Zend Extension Manager v1.0.3, Copyright (c) 2003-2004, by Zend Technologies with Zend Optimizer v2.5.3, Copyright (c) 1998-2004, by Zend Technologies

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10617542/viewspace-947647/,如需轉載,請註明出處,否則將追究法律責任。

相關文章