码迷,mamicode.com
首页 > 其他好文 > 详细

在CentOS6上使用源码编译LAMP平台

时间:2015-06-01 01:02:35      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:源码   编译   lamp   

    最近在学习重要的Web服务,当然也就少不了很重要的httpd和php.而动态网站必定又会使用数据库如mysql之类的,那么,今天就总结一下最近做的LAMP平台编译实验。具体过程如下。


实验名:在CentOS6上使用源码编译LAMP平台


实验环境:CentOS6.5,安装时选择了使用最多的两个开发包组。

          使用系统默认基本yum源+epel6源(aliyun: http://mirrors.aliyun.com/repo/epel-6.repo)

          使用源码包:httpd-2.4.9 ;二进制安装包mysql-5.5.33 ;php-5.4.26


实验步骤:


一.安装httpd服务


1.安装httpd的依赖软件包。

    安装apr-1.5.0

    # tar xf apr-1.5.0.tar.bz2

    # cd apr-1.5.0

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

    # make && make install

    安装apr-util-1.5.3

    # tar xf apr-util-1.5.3.tar.bz2

    # cd apr-util-1.5.3

    # ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr

    # make && make install

    若httpd有可能要支持ssl请要安装openssl及openssl-devel.另,若有安装,请查看是否这两个包有     更新过。

    另编译过程中也会使用pcre,请在编译httpd前安装,系统安装盘是有这个包的。

2.接着就是解压httpd的源码包并安装了,使用如下命令:

    

    # tar xf httpd-2.4.9.tar.bz2

    # cd httpd-2.4.9

    # ./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd24 --enable-so --enable-ssl --enable-cgi --enable-rewrite --with-zlib --with-pcre --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --enable-modules=most --enable-mpms-shared=all --with-mpm=event

说一下./configure里面的参数吧。

第一个参数--prefix是设定安装目录的;

第二个是服务的配置文件存放目录;

第三个是开启动态模块的选项;

第四个是编译并启用ssl模块;

第五个是启用CGI功能;

第六个是rewrite;

第七个是编译数据压缩相关模块;

第八个是使用pcre,这个一个perl的正则匹配类的函数库;

第九个是指明apr的路径;

第十个指明apr-utin的路径;

第十一个是编译最多的模块;

第十二个是构建mpm为动态模块并编译所有支持的模式;

第十三个是指明默认mpm模块为event事件处理方式。

注:最后两个选项很重要,不太明白请搜索关键字“构建MPM模块”


3.好了,一会后,检查发现没有问题,就make && make install安装吧。

。。。。。一会就安装好了。


4.接着,修改主配置文件中的Pid文件路径。

5.编辑/etc/httpd/httpd.conf,添加如下行即可:

PidFile  "/var/run/httpd.pid"

6.最后,是提供SysV脚本,以方便我们管理服务。

编辑一个/etc/rc.d/init.d/httpd ,将以下内容放进去并保存就好了。

#!/bin/bash
#
# httpd        Startup script for the Apache HTTP Server
#
# chkconfig: - 85 15
# description: Apache is a World Wide Web server.  It is used to serve \\\#        HTML files and CGI.
# processname: httpd
# config: /etc/httpd/conf/httpd.conf
# config: /etc/sysconfig/httpd
# pidfile: /var/run/httpd.pid

# Source function library.
. /etc/rc.d/init.d/functions

if [ -f /etc/sysconfig/httpd ]; then
        . /etc/sysconfig/httpd
fi

# Start httpd in the C locale by default.
HTTPD_LANG=${HTTPD_LANG-"C"}

# This will prevent initlog from swallowing up a pass-phrase prompt if
# mod_ssl needs a pass-phrase from the user.
INITLOG_ARGS=""

# Set HTTPD=/usr/sbin/httpd.worker in /etc/sysconfig/httpd to use a server
# with the thread-based "worker" MPM; BE WARNED that some modules may not
# work correctly with a thread-based MPM; notably PHP will refuse to start.

# Path to the apachectl script, server binary, and short-form for messages.
apachectl=/usr/local/apache/bin/apachectl
httpd=${HTTPD-/usr/local/apache/bin/httpd}
prog=httpd
pidfile=${PIDFILE-/var/run/httpd.pid}
lockfile=${LOCKFILE-/var/lock/subsys/httpd}
RETVAL=0

start() {
        echo -n $"Starting $prog: "
        LANG=$HTTPD_LANG daemon --pidfile=${pidfile} $httpd $OPTIONS
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && touch ${lockfile}
        return $RETVAL
}

stop() {
  echo -n $"Stopping $prog: "
  killproc -p ${pidfile} -d 10 $httpd
  RETVAL=$?
  echo
  [ $RETVAL = 0 ] && rm -f ${lockfile} ${pidfile}
}
reload() {
    echo -n $"Reloading $prog: "
    if ! LANG=$HTTPD_LANG $httpd $OPTIONS -t >&/dev/null; then
        RETVAL=$?
        echo $"not reloading due to configuration syntax error"
        failure $"not reloading $httpd due to configuration syntax error"
    else
        killproc -p ${pidfile} $httpd -HUP
        RETVAL=$?
    fi
    echo
}

# See how we were called.
case "$1" in
  start)
  start
  ;;
  stop)
  stop
  ;;
  status)
        status -p ${pidfile} $httpd
  RETVAL=$?
  ;;
  restart)
  stop
  start
  ;;
  condrestart)
  if [ -f ${pidfile} ] ; then
    stop
    start
  fi
  ;;
  reload)
        reload
  ;;
  graceful|help|configtest|fullstatus)
  $apachectl $@
  RETVAL=$?
  ;;
  *)
  echo $"Usage: $prog {start|stop|restart|condrestart|reload|status|fullstatus|graceful|help|configtest}"
  exit 1
esac

exit $RETVAL

7.添加脚本的执行权限后(# chmod +x /etc/rc.d/init.d/httpd)。最后,是不是应该把这个服务加入系统开机启动中呢,明显是必须的嘛。

# chkconfig --add httpd

8.这就是安好apache了哈,不过测试访问前请记得关掉或放行iptables哦。

我来测试一下。

技术分享

    ヽ(.ˇд ˇ;) ヽ(.ˇд ˇ;)


在CentOS6上使用源码编译LAMP平台

标签:源码   编译   lamp   

原文地址:http://icyhome.blog.51cto.com/2342533/1656917

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!