這篇文章主要為大家展示了“CentOS YUM安裝Apache2后怎么安裝配置mod_fastcgi”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“CentOS YUM安裝Apache2后怎么安裝配置mod_fastcgi”這篇文章吧。
創(chuàng)新互聯(lián)長期為近1000家客戶提供的網(wǎng)站建設服務,團隊從業(yè)經(jīng)驗10年,關注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為海港企業(yè)提供專業(yè)的成都網(wǎng)站制作、成都網(wǎng)站設計、外貿(mào)營銷網(wǎng)站建設,海港網(wǎng)站改版等技術(shù)服務。擁有十年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
由于php php-fpm是編譯安裝的,httpd是yum安裝的
安裝fastcgi時發(fā)現(xiàn) yum search mod_fastcgi 沒有。那么只有編譯安裝mod_fastcgi了
逐
cd /usr/local/vipcloud/src/ wget http://www.fastcgi.com/dist/mod_fastcgi-current.tar.gz tar -zxvf mod_fastcgi-current.tar.gz cd mod_fastcgi-2.4.6 more README
然后發(fā)現(xiàn)需要看INSTALL.AP2
繼續(xù)
more INSTALL.AP2
看到
*NIX ==== $ cd$ cp Makefile.AP2 Makefile $ make $ make install If your Apache2 installation isn't in /usr/local/apache2, then set the top_dir variable when running make (or edit the Makefile), e.g. $ make top_dir=/opt/httpd/2.0.40 Add an entry to httpd.conf like this: LoadModule fastcgi_module modules/mod_fastcgi.so
看第7行,需要指定apache2的安裝目錄
由于apache是yum安裝的 沒有特定的安裝目錄,浪個辦?想到反正這里是需要module的目錄吧,于是將
cp Makefile.AP2 Makefile vim Makfiel 把top_dir=替換為 top_dir = /usr/lib64/httpd
然后 make && make install
報錯。
看來不能直接這樣。
度娘之。
度娘出來的都是編譯安裝apache的fastcgi安裝
google之
http://www.cyberciti.biz/tips/rhel-centos-fedora-apache2-fastcgi-php-configuration.html
yum install libtool httpd-devel apr-devel apr
然后在make make install安裝 搞定。
touch /var/www/cgi-bin/php.fcgi
vim /var/www/cgi-bin/php.fcgi
#!/bin/bash # Shell Script To Run PHP5 using mod_fastcgi under Apache 2.x # Tested under Red Hat Enterprise Linux / CentOS 5.x ### Set PATH ### PHP_CGI=/usr/local/vipcloud/php/bin/php-cgi # php 安裝的路徑 PHP_FCGI_CHILDREN=4 PHP_FCGI_MAX_REQUESTS=1000 ### no editing below ### export PHP_FCGI_CHILDREN export PHP_FCGI_MAX_REQUESTS exec $PHP_CGI
cd /etc/httpd/conf.d vim fsatcgi.php.conf DirectoryIndex index.html index.shtml index.cgi index.php AddHandler php5-fcgi .php Action php5-fcgi /php5-fcgi Alias /php5-fcgi /var/www/cgi-bin/php.fcgi FastCgiExternalServer /var/www/cgi-bin/php.fcgi -idle-timeout 60 -host 127.0.0.1:9000 -pass-header Authorization
touch /var/www/html/test.php
echo "" >test.php
以上是“CentOS YUM安裝Apache2后怎么安裝配置mod_fastcgi”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道!