CentOS安装Apache的FastCGI模块(mod_fastcgi)
网上有很多篇关于Apache的fastcgi模块安装说明的文章,大部分都是基于Apache源码编译的,如果是通过yum install方式安装httpd的话,直接依葫芦画瓢必然会遇到各种各样的编译问题,通过查阅老外写的一些安装文档,我大致重新整理了一下。 1. 安装编译相关的依赖包 # yum install httpd-devel apr apr-devel libtool 2. 下载 mod_fastcgi源代码 # wget http://www.fastcgi.com/dist/mod_fastcgi-current.tar.gz 3. 解压并进行编译安装 # tar zxvf mod_fastcgi-2.4.6.tar.gz # cd mod_fastcgi-2.4.6 # cp Makefile.AP2 Makefile # vim Makefile 修改top_dir目录,64位系统的路径为lib64,32位系统的路径为 /usr/lib/httpd top_dir = /usr/lib64/httpd 保存退出后,开始进行编译安装。 # make # make install 4. 加载模块 # vim /etc/httpd/conf/httpd.conf 找到LoadModule部分,添加一行加载语句 ... LoadModule fastcgi_module