Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3097770
  • 博文数量: 797
  • 博客积分: 10134
  • 博客等级: 上将
  • 技术积分: 9335
  • 用 户 组: 普通用户
  • 注册时间: 2006-06-22 22:57
个人简介

1

文章分类

全部博文(797)

文章存档

2022年(1)

2021年(2)

2017年(2)

2016年(1)

2015年(4)

2014年(1)

2013年(6)

2012年(6)

2011年(10)

2010年(26)

2009年(63)

2008年(61)

2007年(51)

2006年(563)

我的朋友

分类: LINUX

2006-07-16 13:35:05

linux9.0下配置APACHE2.0.55 +PHP5.1.1+MYSQL5.0.16+GD库

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

好了,全部的安装就完成了.
花费了十多天的时间总算配置好了apache2+mysql+php,感谢以前那几位辛苦的人,下面就可以用你的PHP5制作一个高效的WEB网站了!
阅读(686) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~