程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP+Lighttpd+FastCGI的安裝

PHP+Lighttpd+FastCGI的安裝

編輯:PHP綜合

1. php安裝
tar zxf php-5.3.2 –C /usr/src
cd /usr/src/php-5.3.2
 ./configure --prefix=/usr/local/php5 --enable-force-cgi-redirect --enable-fastcgi
 make;make install
 cp php.ini.dist /etc/php.ini
 cd /usr/local/php5/bin
 ./php-cgi –b 127.0.0.1:9999
2、pcre安裝
 tar -zxf pcre-7.8.tar.gz
 cd pcre-7.8
 ./configure
 make;make install
3、lighttpd安裝
  tar -jxf lighttpd-1.4.28.tar.bz2
  cd lighttpd-1.4.28
  ./configure
  make;make install
   mkdir -p /srv/www/htdocs
   mkdir /var/log/lighttpd
   touch /var/log/lighttpd/access.log
   touch /var/log/lighttpd/error.log
   useradd lighttpd
   chown -R lighttpd.lighttpd /var/log/lighttpd
   vi /usr/src/lighttpd-1.4.28/doc/config/lighttpd.conf
     server.use-ipv6 = "disable"
    vi /usr/src/lighttpd-1.4.28/doc/config/conf.d/fastcgi.conf

 cd  /srv/www/htdocs/
 touch index.php
 cat >index.php
     lighttpd test!!!
/usr/local/sbin/lighttpd -f /usr/src/lighttpd-1.4.28/doc/config/lighttpd.conf             //開啟lighttpd

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved