CentOS+lighttpd+php+mysql (fastcgi)环境的搭建(转)

       呵呵!觉得有必要把今晚的装lighttpd的经验和过程给记录下来! 第一次写这样的文章,有什么不足的地方请高手们指出并给与修正!下面开始!

 

第一步:系统的安装! 菜鸟的朋友们,可以先去linux系统的初级教程,再来看我的文章!

               跳过。我用的是CentOS5.5的!


二步:下载mysql并安装,地址是:http://www.mysql.com/downloads/mysql/5.1.html#downloads(需要用邮箱注册),现在最新版是                           5.1.54 的,我用的是5.0.56。

              #  /usr/sbin/groupadd mysql

             #  /usr/sbin/useradd   mysql  mysql

            #  tar -xzvf  mysql-5.0.56.tar.gz

           # cd  mysql-5.0.56

           #./configure  --prefix=/opt/mysql   --with-ldflags-client=-all-static  --with-ldflags-mysqld=-all-static   --with-assembler  --with-unix-socket-path=/opt/mysql/tmp/mysql.sock    --with-thread-safe-client  --with-mysqld-user=mysql     -with-extra-charsets=utf8,gbk,gb2312     --with-charset=utf8              (还有很多参数,读者可以根据自己的实际需要,带上哪些参数)。

        #make  &&  make  install

        安装完成之后要做的事情:

             1.拷贝mysql配置文件到/etc目录下,根据你的服务器的配置选择相应的配置文件,然后重名为my.cnf。

                  #cp  support-files/my-medium.cnf   /etc/my.cnf

             2.建立初始化数据库:

                  #cd   /opt/mysql

                  #./bin/mysql_install_db   

             3.更改相关目录的权限:

                   # chown  -R   root   .

                  # chgrp    -R   mysql   .

                  # chown    -R   mysql   var

             看看能不能启动起来:

                 #  /opt/mysql/bin/mysqld_safe --defaults-file=/etc/my.cnf &

 

                                

第三步 :从lighttpd官方网站上下载lighttpd软件,下载地址是:

                http://download.lighttpd.net/lighttpd/releases-1.4.x/lighttpd-1.4.28.tar.gz

      现在最新版本的是1.4.28的,下载下来之后对其进行解压:

                    # groupadd  lighttpd 

                    #useradd  -s  /sbin/nologin  -M -g lighttpd  lighttpd

                   #tar  -xzvf  lighttpd-1.4.28.tar.gz

                  #cd lighttpd-1.4.28

                 #./configure  --prefix=/opt/lighttpd  --with-pcre    --with-openssl    --with-mysql=/opt/mysql/bin/mysql_config

                # make && make install

 

         在第二步中要注意的有几点:

              a、--with-pcre  :lighttpd需要pcre的支持,你要确定你的系统已经装了pcre和pcre-devel软件包!不然他会报错的!

                      #yum   install   pcre

                      #yum install pcre-devel 

 

             b、--with-openssl :这个参数根据你的需要选择加不是不加,如果需要ssl支持的话,那你要确定你的系统中已经装了openssl和openssl-devel。

                     #yum  install  openssl

                    #yum  install  openssl-devel

 

              c、--with-mysql=/opt/mysql/bin/mysql_config  :  这个参数要特别注意,本人刚开始装的时候,误认为是mysql的安装目录,其实不是的,这里是mysql_config文件的路径。

 

              d、如果你遇到了bzip2的错误,你再把bzip2和bzip2-devel两个软件包装上。

                  #yum install bzip2

                  #yum  install  bzip2-devel

除了上述几个错误,基本上没有其他错误了!即使有其他的错误,只要能看得懂上面的错误提示,也没有什么大问题!安装完成之后,需要拷贝几个文件:

                 #  cd  lighttpd-1.4.28/doc/config

                 #mkdir -p /opt/lighttpd/etc

                 #  cp  lighttpd.conf  /opt/lighttpd/etc/

                #  cp  modules.conf  /opt/lighttpd/etc

                # cp  -a  conf.d/  /opt/lighttpd/etc

                # mkdir  -p /opt/lighttpd/run 

                # mkdir  -p  /opt/lighttpd/cache

                # mkdir  -p  /opt/lighttpd/logs

                # chown -R  lighttpd  /opt/lighttpd/

第四步:接下来,再安装php,下载地址是:http://cn.php.net/get/php-5.3.5.tar.gz/from/this/mirror,最新版的是5.3.5的,我用的是5.2.16                 的。安装php之前要做一些准备:(需要的软件包很多,因为我们不是实际应用,所以我有的软件包没提到)基本的几个软件包有                 以下几个:jpeg和jpeg-devel ,png  和png-devel,freetype和freetype-devel,libxml2和libxml2-devel,gd和gd-devel,libiconv,                  zlib和zlibdevel,mhash,libmcrypt等等。

                可以用yum安装的几个就不讲了。下面几个编译安装的(有的可以不安装的!)

                                                                             #  tar zxvf libiconv-1.13.tar.gz

                                                                             #  cd libiconv-1.13/

                                                                            # ./configure --prefix=/usr/local             

                                                                            #  make

                                                                            #  make install

                                                                            #   cd ../

                                                                      

                                                                          #  tar zxvf libmcrypt-2.5.8.tar.gz 

                                                                          #  cd libmcrypt-2.5.8/

                                                                          # ./configure

                                                                          #  make  &&  make install

                                                                          #  /sbin/ldconfig

                                                                          #  cd libltdl/

                                                                          # ./configure --enable-ltdl-install

                                                                         #  make  &&  make install 

                                                                         #   cd http://www.cnblogs.com/ 

           

                                                                        #   tar zxvf mhash-0.9.9.9.tar.gz

                                                                         #  cd mhash-0.9.9.9/

                                                                         # ./configure

                                                                          # make  &&  make install

            在php安装过程中报错的时候,看它是不是提示哪个包没有安装,如是这样的话,就缺哪个软件包就安装哪个咯!安装php:

                       # tar -xzvf php-5.2.16.tar.gz

                    给 php打个补丁(php-5.2.16-fpm-0.5.14.diff.gz:php进程管理器)下载地址:

                                        http://php-fpm.org/downloads/php-5.2.16-fpm-0.5.14.diff.gz

                     #  gzip -cd php-5.2.16-fpm-0.5.14.diff.gz > patch -d php-5.2.16 -p1 

                      # cd php-5.2.16

                        #  ./configure  --prefix=/opt/php --with-config-file-path=/opt/php/etc --with-mysql=/opt/mysql --with-mysqli=/opt/mysql/bin/mysql_config --with-iconv-dir=/usr/local --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-discard-path --enable-safe-mode --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-fastcgi --enable-fpm --enable-force-cgi-redirect --enable-mbstring --with-mcrypt --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets

                      #  make  && make install

第五步:一些基本的配置:lighttpd 主配置文件lighttpd.conf文件的大致内容如下(红色代表修改过,蓝色代表要注意一下配置):

··································#######################################################################
##
## Some Variable definition which will make chrooting easier.
##
## if you add a variable here. Add the corresponding variable in the
## chroot example aswell.
##var.log_root    = "/opt/lighttpd/logs"
var.server_root = "/opt/lighttpd"
var.state_dir   = "/opt/lighttpd/run"
var.home_dir    = "/opt/lighttpd"
var.conf_dir    = "/opt/lighttpd/etc"##
## Some additional variables to make the configuration easier
####
## Base directory for all virtual hosts
##
## used in:
## conf.d/evhost.conf
## conf.d/simple_vhost.conf
## vhosts.d/vhosts.template
##var.vhosts_dir  = server_root + "/vhosts"##
## Cache for mod_compress
##
## used in:
## conf.d/compress.conf
##var.cache_dir   = "/opt/lighttpd/cache"##
## Base directory for sockets.
##
## used in:
## conf.d/fastcgi.conf
## conf.d/scgi.conf
##var.socket_dir  = home_dir + "/sockets"##
##############################################################################################################################################
##
## Load the modules.include "modules.conf"##
##############################################################################################################################################
##
##  Basic Configuration
## ---------------------
##server.port = 88##
## Use IPv6?
##
##server.use-ipv6 = "enable"##
## bind to a specific IP
##server.bind = "192.168.1.2"##
## Run as a different username/groupname.
## This requires root permissions during startup. 
##server.username  = "lighttpd"
server.groupname = "lighttpd"## 
## enable core files.
##
#server.core-files = "disable"##
## Document root
##server.document-root = server_root + "/htdocs"##
## The value for the "Server:" response field.
##
## It would be nice to keep it at "lighttpd".
##
#server.tag = "lighttpd"##
## store a pid file
##server.pid-file = state_dir + "/lighttpd.pid"##
##############################################################################################################################################
##
##  Logging Options
## ------------------
##
## all logging options can be overwritten per vhost.
##
## Path to the error log file
##server.errorlog             = log_root + "/error.log"##
## If you want to log to syslog you have to unset the 
## server.errorlog setting and uncomment the next line.
##
#server.errorlog-use-syslog = "enable"##
## Access log config
##include "conf.d/access_log.conf"##
## The debug options are moved into their own file.
## see conf.d/debug.conf for various options for request debugging.
##include "conf.d/debug.conf"##
##############################################################################################################################################
##
##  Tuning/Performance
## --------------------
##
## corresponding documentation:
## http://www.lighttpd.net/documentation/performance.html
##
## set the event-handler (read the performance section in the manual)
##
## possible options on linux are:
#### select
## poll
## linux-sysepoll
##
## linux-sysepoll is recommended on kernel 2.6.
##
server.event-handler = "linux-sysepoll"####
server.network-backend = "linux-sendfile"##
server.max-fds = 2048##
## Stat() call caching.
##
## lighttpd can utilize FAM/Gamin to cache stat call.
##
## possible values are:
## disable, simple or fam.
##
server.stat-cache-engine = "simple"##
## Fine tuning for the request handling
##
## max-connections == max-fds/2 (maybe /3)
## means the other file handles are used for fastcgi/files
##server.max-connections = 1024##
## How many seconds to keep a keep-alive connection open,
## until we consider it idle. 
##
## Default: 5
###server.max-keep-alive-idle = 5index-file.names += ("index.xhtml", "index.html", "index.htm", "default.htm", "index.php"
)##
## deny access the file-extensions
##
## ~    is for backupfiles from vi, emacs, joe, ...
## .inc is often used for code includes which should in general not be part
##      of the document-root
url.access-deny             = ( "~", ".inc" )##
## disable range requests for pdf files
## workaround for a bug in the Acrobat Reader plugin.
####$HTTP["url"] =~ "\.pdf$" {
##  server.range-requests = "disable"
##}##
## url handling modules (rewrite, redirect)
##
## defaults to /var/tmp as we assume it is a local harddisk
##server.upload-dirs = ( "/var/tmp" )##
##############################################################################################################################################
##
##  SSL Support
## ------------- 
##
#

····························

对modules.conf取消需要用到模块的注释,mod_rewritemod_accessmod_fastcgi

mod_simple_vhostmod_cgimod_compressmod_accesslog是一般需要用到的。modules.conf文件内容如下:

#######################################################################
##
##  Modules to load
## -----------------
##
## at least mod_access and mod_accesslog should be loaded
## all other module should only be loaded if really neccesary
##
## - saves some time
## - saves memory
##
## the default module set contains:
##
## "mod_indexfile", "mod_dirlisting", "mod_staticfile"
##
## you dont have to include those modules in your list
##
## Modules, which are pulled in via conf.d/*.conf
##
## NOTE: the order of modules is important.
##
## - mod_accesslog     -> conf.d/access_log.conf
## - mod_compress      -> conf.d/compress.conf
## - mod_status        -> conf.d/status.conf
## - mod_webdav        -> conf.d/webdav.conf
## - mod_cml           -> conf.d/cml.conf
## - mod_evhost        -> conf.d/evhost.conf
## - mod_simple_vhost  -> conf.d/simple_vhost.conf
## - mod_mysql_vhost   -> conf.d/mysql_vhost.conf
## - mod_trigger_b4_dl -> conf.d/trigger_b4_dl.conf
## - mod_userdir       -> conf.d/userdir.conf
## - mod_rrdtool       -> conf.d/rrdtool.conf
## - mod_ssi           -> conf.d/ssi.conf
## - mod_cgi           -> conf.d/cgi.conf
## - mod_scgi          -> conf.d/scgi.conf
## - mod_fastcgi       -> conf.d/fastcgi.conf
## - mod_proxy         -> conf.d/proxy.conf
## - mod_secdownload   -> conf.d/secdownload.conf
## - mod_expire        -> conf.d/expire.conf
##server.modules = ("mod_access","mod_alias","mod_auth","mod_evasive","mod_redirect","mod_rewrite","mod_setenv","mod_usertrack",)##
##############################################################################################################################################
##
##  Config for various Modules
##

·····························

配置lighttpd和php和通信(fastcgi):

# vi /opt/lighttpd/etc/conf.d/fastcgi.conf

#######################################################################

##
##  FastCGI Module 
## --------------- 
##
## http://www.lighttpd.net/documentation/fastcgi.html
##
server.modules += ( "mod_fastcgi" )##
## PHP Example
##For PHP don't forget to set cgi.fix_pathinfo = 1 in the php.ini.##
## The number of php processes you will get can be easily calculated:

·······················

······················

## chrooted webserver + external PHP
##
## $ spawn-fcgi -f /usr/bin/php-cgi -p 2000 -a 127.0.0.1 -C 8
##
## webserver chrooted to /srv/www/
## php running outside the chroot
fastcgi.server = ( ".php" => (( "host" => "127.0.0.1","port" => "9000","docroot" => "/opt/lighttpd/htdocs/")))#server.chroot = "/opt/lighttpd"
#server.document-root = "/opt/lighttpd/htdocs/"
###
#######################################################################


载自:http://hi.baidu.com/keguichao/blog/item/e8fcb810c424a2d4a6ef3f64.html

转载于:https://www.cnblogs.com/chenwenbiao/archive/2011/08/01/2124020.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/298188.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vpx8运行待解决问题

一开始运行的时候是因为找不到HAVE_CONFIG_H他的定义,所以编译无法通过,找了好久还是没有找到,所以就先把它给注释掉了,结果运行的时候还是无法通过,运行的结果如下: 希望赶紧找到解决的办法 1>------ B…

led灯具供货合同

美高森美与索尼合作推出首款具3D功能的定时控制器与局部调光LED背光组合解决方案在刚刚结束的第十一届国际集成电路研讨会暨展览会(IIC-China 2011)上,美高森美公司(Microsemi)展示了与索尼合作推出的目前市场上首款具有3D功能的定时控制器与…

startindex 不能大于字符串长度_玩转云端丨redis的5种对象与8种数据结构之字符串对象(下)...

引言本文是对《redis设计与实现(第二版)》中数据结构与对象相关内容的整理与说明。本篇文章只对对象结构,1种对象——字符串对象。以及字符串对象所对应的两种编码——raw和embstr,进行了详细介绍。表达一些本人的想法与看法,也希望更多朋友一…

网友半夜差点被沐浴露吓死,众人:原来不止我胆小....

全世界只有3.14 % 的人关注了爆炸吧知识微博上有网友爆料说,他半夜上厕所差点被沐浴露吓死!这么看可能不明显但是关灯的时候.....啊啊啊啊啊~结果引来众多网友的共鸣,原来大家都有类似遭遇....比如,你有被饮水机吓到过…

.NET 6 RC1 正式发布

昨天晚上微软发布了.NET 6的两个RC版本中的第一个版本,该版本将于11月正式发布,作为在开源MIT协议下整合所有不同的.NET开发模组件的开源跨平台实现。这是一个从2014年开始,持续多年的,以改变应用开发游戏规则的努力,由…

Winform开发中另一种样式的OutLookBar工具条

很早的时候,曾经写了一篇随笔《WinForm界面开发之“OutLookBar”工具条》介绍了OutLookBar样式的工具条,得到很多同行的热烈反馈,我个人也比较喜欢这样的工具条布局,因此我很多共享软件中,都经常看到这种OutLookBar的工…

常用小知识

在linux 上生成一个字符串的MD5 ,可以直接用linux 上的命令:#md5sumecho -n ’123456′ | md5sum 这样及可。vi 使用:^ 到行首$ 到行尾yy 复制一行p 粘贴u 回退-------------------------------------------------------------------she…

重构的小故事 Change Value to Reference or Vice Verse

值和引用&#xff0c;有时候程序员因为熟悉而忽略了它们之间的区别&#xff0c;因此使用的时候也就不做选择信手拈来。得到预期结果就行&#xff0c;得不到预期结果就换下试试&#xff0c;毕竟两者有其一。那到底是值还是引用呢&#xff1f;有这样一个生活中的故事。<?xml:…

r语言主成分分析_PCA主成分分析

PCA主成分分析最近遇到了主成分分析法这个东西&#xff0c;一开始我觉得简直天才啊&#xff0c;这个想法虽然从经济意义上来解释有点奇怪&#xff0c;毕竟是数学方法计算出来的解释因子&#xff0c;但鉴于没人知道现实世界究竟被多少因素影响&#xff0c;这种方法可以将最主要的…

宫崎骏动画里的新垣结衣见过没?简直美呆!

全世界只有3.14 % 的人关注了爆炸吧知识本文经机器之心&#xff08;ID&#xff1a;almosthuman2014&#xff09;授权转载参与&#xff1a;肖清、思尽管最近 2019 年的图灵奖颁给了计算机图形学、颁给了皮克斯 3D 动画&#xff0c;但很多人可能认为二维动漫更有意思一些。像宫崎…

更了吗?Windows 11 22000.184 推送

面向 Beta 频道的 Windows 预览体验成员&#xff0c;微软现已发布 Windows 11 预览版 Build 22000.184。Windows 11 Insider Preview Build 22000.184 主要变化如下&#xff1a;1.微软现已修复在Windows 11 OOBE&#xff08;开箱体验&#xff09;阶段了解 Windows Hello 更多详…

java 快速io_如何快速理解Java的IO流

初学者觉得IO流复杂是很正常的&#xff0c;归根结底是没有理解JavaIO框架的设计思想&#xff1a;可以沿着这条路想一想&#xff1a;1&#xff0c;学IO流之前&#xff0c;我们写的程序&#xff0c;都是在内存里自己跟自己玩。比如&#xff0c;你声明个变量&#xff0c;创建个数组…

Effective C++ 学习笔记(11)

确定基类有虚析构函数 class A{public: A() { cout<<"A constructor"<<endl; }~A() { cout<<"A destructor"<<endl; }};class B: public A{public: B() { cout<<"B constru…

微软职位内部推荐-Software Development Engineer 2

微软近期Open的职位:SDE IIOrganization Summary:Engineering, Customer interactions & Online (ECO) is looking for a great "Software Development Engineer" to join our team. Customer support is a strategic differentiator for Microsoft and we are i…

C#判断某软件是否安装

代码 privatevoidbutton1_Click(objectsender, EventArgs e) { if(checkAdobeReader() true) { MessageBox.Show("有安裝 Adobe Reader "); } else{ MessageBox.Show("沒有安裝 Adobe Reader "); } …

男朋友和女朋友的区别。。。

1 区别于这耳光来的也是猝不及防。。。2 铲屎官做的一个防止猫咪抢食的装置大概就是这只橘猫保持苗条的秘籍吧3 学生时代的爱情大概就是这样吧。。4 这样的哥哥给我来一打&#xff01;5 据我多年经验&#xff0c;应该是溺水身亡了6 治婊专家陈豪&#xff0c;专业补刀二十年&…

如何在 C# 循环中捕获局部变量?

咨询区 Morgan Cheng&#xff1a;我遇到了一个有趣的问题&#xff0c;它的代码大概是这样的。List<Func<int>> actions new List<Func<int>>();int variable 0; while (variable < 5) {actions.Add(() > variable * 2); variable; }foreach (v…

java创建计数器变量,用于检查变量(计数器)最大长度的Java方法

Kindly please anyone who knows is the any method to knowwhat is the limit of length of a counter?Depsite from initiliazed variables types (either int, byte, long etc)is there any way for me to check my variable (counter)s max lenght?Please share the info…

【原创】Newlife.XCode的常见功能使用(一)查询与数据初始化

本博客所有文章分类的总目录&#xff1a;http://www.cnblogs.com/asxinyu/p/4288836.html Newlife XCode组件相关文章目录&#xff1a;http://www.cnblogs.com/asxinyu/p/4329747.html 1.前言 声明&#xff1a;此Newlife.XCode非Mac的XCode&#xff0c;避免误会。 1.QQ群:16008…

IronRuby - 如何在VS2010下调试IronRuby代码

在OpenExpressApp &#xff0d; 使用VS2010的CodedUI来做自己的自动化测试框架中介绍了我将使用IronRuby进行测试框架的编写。虽然Ruby已经非常的流行&#xff0c;我所在公司有的项目也深入的应用过&#xff0c;但它对于我来说还是非常新的&#xff0c;对它的认识也就是快速的看…