第一步:系统与软件的准备
系统版本redhatenterpriselinux5,内核版本2.6.18
系统安装组件选择:GNOME,图形化互联网,编辑器,开发工具,基本系统,系统工具,管理工具,X窗口环境
(因为机器有限,要从本机测试,所以安装GNOME和互联网环境)
第二步:软件包的准备
httpd软件包:httpd-2.2.8.tar.bz2
mysql软件包从mysql官方网站下载,我选用的是ehel5的rpm包
MySQL-server-community-5.0.51a-0.rhel5.i386.rpm
MySQL-client-community-5.0.51a-0.rhel5.i386.rpm
MySQL-devel-community-5.0.51a-0.rhel5.i386.rpm
MySQL-shared-community-5.0.51a-0.rhel5.i386.rpm
php5软件包:php-5.2.5.tar.bz2
其他库文件:
curl-7.15.0.tar.gz
freetype-2.3.5.tar.gz
gd-2.0.35.tar.gz
jpegsrc.v6b.tar.gz
libpng-1.2.26.tar.gz
libxml2-2.6.31.tar.gz
PDFlib-7.0.3-Linux-php.tar.gz
t1lib-5.0.0.tar.gz
xpm-3.4k.tar.gz
zlib-1.2.3.tar.gz
gettext-0.16.tar.gz
其他管理软件包:
phpMyAdmin-2.11.6-rc1-all-languages.tar.gz
webmin-1.410.tar.gz
第三步开始安装:安装的顺序,httpd和mysql的安装,从这个环境而言是无所谓的,只是php5软件包要最后安装,先安装httpd
简要步骤如下,#号提示符后面为命令,复制所有软件包到一个位置,我这里是在/usr/local/src目录下创建lamp目录,然后复制所有软件包到lamp下
#cd/usr/local/src/lamp
#tarzxvfhttpd-2.2.8.tar.bz2
#cdhttp-2.2.8
#./configure--prefix=/usr/local/apache2--enable-rule=SHARED_CORE--enable-module=so
#make
#makeinstall
安装apache完成,输入命令
#/usr/local/apache2/bin/apachectl-kstart
从本地或其它机器打开Firefox浏览器(我的钟爱),输入地址http://你的服务器ip地址,记得开放服务器的80端口,不然可能会提示错误,如果正确的话会出现一个"Itworks!"的提示页面,此时,apache2基本安装完成。
接下来进行Mysql的安装,我先安装mysql-server的安装包,提示需要perl-DBI包,从安装光盘上即可找到,DVD安装的直接就去光盘上的Server文件夹去找就可以了,如果是cd安装,就去cd-2上去同样的目录。
#mount/dev/cdrw/media
#rpm-ivh/media/Server/perl-DBI-1.52-1.fc6.i386.rpm
安装完成后再依次安装mysql的其他包
#rpm-UvhMySQL-server-community-5.0.51a-0.rhel5.i386.rpm
#rpm-UvhMySQL-client-community-5.0.51a-0.rhel5.i386.rpm
#rpm-UvhMySQL-devel-community-5.0.51a-0.rhel5.i386.rpm
#rpm-UvhMySQL-shared-community-5.0.51a-0.rhel5.i386.rpm
安装完成后修改mysql的root用户密码,默认为空,修改命令如下
#/usr/bin/mysqladmin-urootpassword'密码字符串'
以后再从命令行登录mysql的就输入
#mysql-uroot-p
会提示输入密码,Mysql的基本安装完成。
接下来是其他库文件的安装,这些软件包的安装顺序应该可以自由选择(zlib在libpng前安装),不过我认为可以先把Zlib安装上,仅作参考。
我这次的顺序就没有先安装zlib,就随便选择来安装了,先是Curl,
#tarzxvfcurl-7.15.0.tar.gz
#cdcurl-7.15.0
#./configure--prefix=/usr/local/curl
(我认为可以加上--with-zlib开关,只是这次我没有用)
#make
#makeinstall
jpeg的安装,jpeg不能自己创建安装所需的目录,要提前创建好
#mkdir-pv/usr/local/jpeg/{,bin,lib,include,man/man1,man1}
#./configure--prefix=/usr/local/jpeg--enable-shared--enable-static
#make
#makeinstall
libxml2的安装
#tarzxvflibxml2-2.6.31.tar.gz
#cdlibxml2
#./configure--prefix=/usr/local/libxml2
(可以尝试打开zlib开关,--with-zlib)
#make(时间可能稍微长些)
#makeinstall
#cpxml2-config/usr/bin
LibPDF的安装
#tarzxvfPDFlib-7.0.3-Linux-php.tar.gz
#cdpdflib
#cpbind/php5/php520mt/libpdf-php.so/usr/local/lib/
(上面的php520mt目录的同级目录中有php503,php510,php520目录,不知道是不是版本的区别)
T1lib的安装
#tarzxvft1lib-5.0.0.tar.gz
#cdt1lib
#./configure--prefix=/usr/local/t1lib
#makewithout-doc
#makeinstall
Freetype的安装
#tarzxvffreetype-2.3.5.tar.gz
#cdfreetype
#./configure--prefix=/usr/local/freetype
#make
#makeinstall
Zlib的安装
#tarzxvfzlib-1.2.3.tar.gz
#./configure--shared
#make
#makeinstall
Libpng的安装
#tarzxvflibpng-1.2.26.tar.gz
#cdlibpng
#cpscripts/makefile.linux./makefile
#./configure--prefix=/usr/local/libpng
#make
#makeinstall
GDlib的安装,可能会出现AM_ICON的错误提示,此时需要安装gettext软件包
#tarzxvfgettext-0.16.tar.gz
#cdgettext
#./configure--prefix=/usr/local/gettext
#make
#makeinstall(时间稍长)
接下来是gdlib的安装
#tarzxvfgd-2.0.35.tar.gz
#cdgd
#./configure--with-png=/usr/local/lib\
--with-zlib=/usr/local/lib\
--with-freetype=/usr/local/freetype/lib\
--with-jpeg=/usr/local/jpeg/lib
#make
#makeinstall
PHP5的安装
#tarzxvfphp-5.2.5.tar.bz2
#cdphp
#./configure--prefix=/usr/local/php--with-apxs2=/usr/local/apache/bin/apxs\
--enable-track-vars--with-sockets--enable-sockets--with-sysvshm--with-sysvsem\
--with-pdflib-dir=/usr/local/lib--with-jpeg-dir=/usr/local/jpeg\
--with-png-dir=/usr/local/lib--with-zlib-dir=/usr/local/lib\
--with-freetype-dir=/usr/local/freetype--with-curl=/usr/local/curl\
--with-libxml-dir=/usr/locallibxml2/lib--with-t1lib=/usr/loc alt1lib\
--with-gettext=/usr/localgettext/lib--with-gd--with-mysql
(最好加上mbstring和mcypt,不知道是不是必须)
configure后如果成功会提示PHP欢迎界面:ThankyouforusingPHP.
#make
#maketest
(大约3000多项测试吧)
#makeinstall
Php.ini文件的修改
#cpphp.ini.dist/usr/local/lib/
查找修改extension_dir='./'的内容
extension_dir=/usr/local/lib
extension=libpdf_php.so
保存退出
最后修改apache配置文件httpd.conf
#vi/usr/local/apache2/conf/httpd.conf
查找AddType大约在DefaultTypetext/plain
输入如下内容
AddTypeapplication/x-httpd-php.htm
AddTypeapplication/x-httpd-php.html
AddTypeapplication/x-httpd-php.phtml
AddTypeapplication/x-httpd-php.php
AddTypeapplication/x-httpd-php.php3
AddTypeapplication/x-httpd-php.php4
AddTypeapplication/x-httpd-php-source.phps
(不清楚是不是必须输入这么多项)
查找DirectoryIndexindex.html在其后输入index.php
保存文件,退出。
测试php,创建info.php文件放到网站的目录下,我这里是/usr/local/apapche2/htdocs
内容如下