预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10

亲,该文档总共17页,到这已经超出免费预览范围,如果喜欢就直接下载吧~

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

GD库加PHP加速软件eAccelerator加Zend的安装教程 首先需要安装GD所必须的一些小软件包 bzip2-develzlib-devellibjpeg-devellibpng-devellibtiff-develfreetype-developenssl-devellibxml2-develgettext-devel 先安装好,避免手动编译浪费时间,同时也能避免很多错误,这几个小软件的编译如果错误了,GD当然也就安装不, php5的编译当然也没戏了,所以我们对这些小软件包,进行同意安装,并且对服务器的性能也不能产生什么影响。 二。安装gd;apache;mysql;php基本环境 1,安装GD2 [root@localhostDesktop]#tarzxvfgd-2.0.33.tar.gz[root@localhostDesktop]#cdgd-2.0.33[root@localhostgd-2.0.33]#./configure--prefix=/usr/local/gd**Configurationsummaryforgd2.0.33:SupportforPNGlibrary:yesSupportforJPEGlibrary:yesSupportforFreetype2.xlibrary:yesSupportforFontconfiglibrary:yesSupportforXpmlibrary:yesSupportforpthreads:yes可以看到已经支持PNGJPEG等[root@localhostgd-2.0.33]#make[root@localhostgd-2.0.33]#makeinstall 2.安装apache2 [root@localhostDesktop]#tarzxvfhttpd-2.2.15.tar.gz[root@localhostDesktop]#cdhttpd-2.2.15[root@localhosthttpd-2.2.15]#./configure--prefix=/usr/local/apache--with-ssl--enable-ssl--enable-so--enable-rewrite--with-mpm=worker--disable-cgid--disable-cgi*enable-ssl启用ssl*enable-so启用动态模块。静态模块是功能模块与Apache本身结合在一起;而动态模块则是程序需要调用时,才加载的模块。*enable-rewrite启用Apach重写规则以及URL的重定向。*with-mpm=worker指定Apache的进程模型为worker。默认情况下。进程模型选择prefork,使用worker模型,只要是为了改善Apache的性能。*disable-cgi关闭cgi *在使用httpd-2.2.13.tar.gz编译worker模式是提示错误 server/mpm/worker/.libs/libworker.a(worker.o):Infunction`child_main': /root/httpd-2.2.17/server/mpm/worker/worker.c:1203:undefinedreferenceto`ap_thread_stacksize' collect2:ldreturned1exitstatus *没有解决,就换用httpd-2.2.15.tar版本编译worker模式,成功 [root@localhosthttpd-2.2.15]#make[root@localhosthttpd-2.2.15]#makeinstall 下面教大家如何把apache设置成系统服务,将apache设置成开机自动启动的两种方法 在/etc/rc.d/rc.local文件中加入一行 /usr/local/apache/bin/apachectlstart 这样每次重新启动系统以后,apache也会随系统一起启动。 或者将apache安装为系统服务 [root@localhosthttpd-2.2.15]#cp/usr/local/apache/bin/apachectl/etc/rc.d/init.d/httpd 然后vi/etc/rc.d/init.d/httpd添加(#!/bin/sh下面) #chkconfig:23451090#description:Activates/DeactivatesApacheWebServer 最后,运行chkconfig把Apache添加到系统的启动服务组里面: [root@localhosthttpd-2.2.15]#chkconfig--addhttpd[root@localhost