[这个贴子最后由风灵风之子在 2005/04/17 10:05pm 第 1 次编辑]
[watermark] 因为工作需要,我要在Linux下搭建apache+mysql的环境,所以把安装过程分享给大家
首先要确定是否有GCC,可以在shell下输入cc -v
[root@localhost root]# cc -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/3.2.2/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.2 20030222 (Red Hat Linux 3.2.2-5)
显示我的机器上的GCC版本为3.2.2,所以可以用它来编译.
然后去www.apache.org下载apache,我安装的版本是2.0.53
安装
#tar zxvf httpd-2.0.53.tar.gz
#cd httpd-2.0.53
#./configure -prefix=/usr/local/apache2 -enable-module=so
#make
#make install
启动apache
#/usr/local/apache2/bin/apachectl start[/watermark] |