LAMP编译安装


  一, 编译安装httpd-2.4.9

  二,给编译安装的httpd提供SysV服务启动脚本 
  三, 编译安装mysql-5.5.33
  四,编译安装php-5.4.26
  五, 配置LAMP


 一:编译安装httpd-2.4.9

  需要的包组:apr-1.5.0.tar.bz2;apr-util-1.5.3.tar.bz2;httpd-2.4.9.tar.bz2

  1)解决依赖关系编译安装apr-1.5.0.tar.bz2,apr-util

 tar xf apr-1.5.0.tar.bz2 cd apr-1.5.0 ./configure --prefix=/usr/local/apr make && make install  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之前由于要用到pcre,所以在编译之前要把pcre-devel装上。有时遇到openssl版本过低不能编译成功时解决方法把openssl-devel装上。

  3) httpd-2.4.9编译

tar xf httpd-2.4.9.tar.bz2cd 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=eventmake && make install

  4)修改httpd的主配置文件,设置其Pid文件的路径

    pid文件的作用:防止进程启动多个副本。只有获得pid文件(固定路径固定文件名)写入权限(F_WRLCK)的进程才能正常启动并把自身的PID写入该文件中。其它同一个程序的多余进程则自动退出。

编辑/etc/httpd/httpd24.conf,添加:PidFile  "/var/run/httpd.pid"

  5)提供SysV服务脚本/etc/rc.d/init.d/httpd24,内容如下:

#!/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/functionsif [ -f /etc/sysconfig/httpd ]; then        . /etc/sysconfig/httpdfi# 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/apachectlhttpd=${HTTPD-/usr/local/apache/bin/httpd}prog=httpdpidfile=${PIDFILE-/var/run/httpd.pid}lockfile=${LOCKFILE-/var/lock/subsys/httpd}RETVAL=0start() {        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|h  elp|configtest}"  exit 1esacexit $RETVAL

 而后为此脚本赋予执行权限:

 chmod +x /etc/rc.d/init.d/httpd24

加入服务列表:

chkconfig --add httpd24

接下来就可以启动服务进行测试了。


二:二进制安装mysql-5.5.33

1)解压下载来的mysql软件到 /usr/local下

tar xf mariadb-5.5.36-linux-x86_64.tar.gz -C /usr/local

2)创建RAID 挂载逻辑卷/mydata 创建存放数据的目录data;编辑/etc/fstab设置分区开机挂载。

3)创建mysql用户及修改存放数据目录的属主属组

groupadd -r mysql ;useradd -g mysql -r mysqlchown -R mysql.mysql /mydata/data/

4)为解压的文件创建连接文件mysql;修改解压出的文件的属组,属主。

 cd /usr/local ;  ln -sv mariadb-5.5.36-linux-x86_64 mysql cd mysql ; chown -R root.mysql ./*

5)mysql数据的初始化

cd /usr/local/mysql ;scripts/mysql_install_db --user=mysql --datadir=/mydata/data

5)创建mysql的主配置文件;并修改此文件中thread_concurrency的值为你的CPU个数乘以2,比如这里使用如下行:另外还需要添加如下行指定mysql数据文件的存放位置:datadir = /mydata/data

mkdir /etc/mysql cp support-files/my-large.cnf /etc/mysql/my.cnfvim /etc/mysql/my.cnfthread_concurrency = 2datadir = /mydata/data

7)创建mysqld,启动脚本

cd /usr/local/mysql cp support-files/mysql.server  /etc/rc.d/init.d/mysqld chmod +x /etc/rc.d/init.d/mysqldchkconfig --add mysqld chkconfig --list mysqld service mysqld start

8)读取mysql客户端的配置文件

vim /etc/profile.d/mysql.sh export PATH=/usr/local/mysql/bin:$PATHsource /etc/profile.d/mysql.sh

9)连接mysql的头文件

ln -sv /usr/local/mysql/include/ /usr/include/mysql

10)读取mysql的库文件

vim /etc/ld.so.conf.d/mysql.conf 写入/usr/local/mysql/lib

11)测试能否进入mysql


三:编译安装php-5.4.26

 1)解决依赖关系

yum -y groupinstall "Desktop Platform Development" yum -y install bzip2-devel libmcrypt-devel

2)编译安装php-5.4.26

  编译这一部时可能会遇到一些包组没安装的问题按照提示安装上相应的包组就行了如我这里检查时出现了

意思说没有安装libxml2包,通过检测查处系统有

通过yum install libxml2-devel 就可以解决问题。

tar xf php-5.4.26.tar.bz2cd php-5.4.26./configure --prefix=/usr/local/php --with-mysql=/usr/local/mysql --with-openssl --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-mbstring --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml  --enable-sockets --with-apxs2=/usr/local/apache/bin/apxs --with-mcrypt  --with-config-file-path=/etc --with-config-file-scan-dir=/etc/php.d --with-bz2  --enable-maintainer-ztsmakemake testmake intall

3)为php提供配置文件

cp php.ini-production /etc/php.ini

4)编辑apache配置文件:httpd.conf,以apache支持php

 vim /etc/httpd/httpd.conf 1、添加如下二行   AddType application/x-httpd-php  .php   AddType application/x-httpd-php-source  .phps 2、定位至DirectoryIndex index.html    修改为:    DirectoryIndex  index.php  index.html

5)在数据库内创建数据库用户.并给此数据库用户授权。

create database wpdatacreate user 'wp'@127.0.0.1 #创建用户。grant all on wpdata.* to 'wp'@'127.0.0.1' identified by '123';#给wp用户在wpdata数据库下的所有表授所有的权限

6)提供测试页面编辑,在/usr/local/apache/htdocs创建index.php

测试页面index.php示例如下:    


四:安装phpMyAdmin

    1)把phpMyAdmin解压到/usr/local/apache/htdocs 下重命名为phpadm

    2)把里面的config.sample.inc.php 重命名为 config.inc.php

    3)


五:安装Wordpress

   1)解压wordpress到/usr/local/apache/htdocs 下

   2)打开Wordpress提示

3)把wordpress下的wp-config-simple.php 修改为wp-config.php  并配置此文件。

4)再次打开worepress


六:安装xcache

  xcache 是通过缓存来提高php的响应速度

 1)先对phpadm/index.php进行压力测试

  ab -n 200 -c 20 http://172.16.16.5/phpadm/index.php

  

经过多次测试网页在20次并发200次访问时响应的速度为25左右

 2)添加xcache模块编译安装xczche

 tar xf xcache-3.0.3.tar.gz cd xcache-3.0.3 /usr/local/php/bin/phpize ./configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config make && make install 安装结束时,会出现类似如下行: Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-zts-20100525/ mkdir /etc/php.d cp xcache.ini /etc/php.d  接下来编辑/etc/php.d/xcache.ini,找到extension开头的行,修改为如下行: extension = /usr/local/php/lib/php/extensions/no-debug-zts-20100525/xcache.so

 3)重新测试下看能否显示xcache

5)测试访问速度是否增加

多次测试求得平均值为95左右访问速度明显提高。