LAMP是一般是指一组用来运行动态网站或者服务器的相关软件, 它们共同组成了一个强大的Web应用程序平台,由于是开源软件,开发成本较低,并且随着开源软件的不断发展,它们之间也拥有了越来越高的兼容度,使得其越来越受到人们的关注。在此我们就介绍一下LAMP的编译安装及配置,我们在此用的是linux,apache,mysql和php,好了,进入正题。
实现LAMP的编译安装,我们在此所用的软件版本分别为 httpd 2.4.1 mysql-5.5.19 和php-5.3.10
首先是编译安装httpd 2.4.1
1 准备工作:
安装httpd-2.4.1需要依赖几个软件包.(在此推荐2个软件包的下载网 站rpm.pbone.net和 rpmfind.net 以下我们用到的所有软件包基本都可在其中下载到)
apr-1.4.6-1.i386.rpm
apr-devel-1.4.6-1.i386.rpm
apr-util-1.4.1-1.i386.rpm
apr-util-devel-1.4.1-1.i386.rpm
获取以上软件包后直接升级安装
#rpm –Uvh apr-1.4.6-1.i386.rpm apr-devel-1.4.6-1.i386.rpm
#rpm –Uvh apr-util-1.4.1-1.i386.rpm apr-util-devel-1.4.1-1.i386.rpm
httpd-2.4.1编译过程也需要pcre-devel软件包,需要事先安装。此软件包系统光盘自带
如果配置好了yum源可直接yum安装 如果没有则找到直接安装
#yum install pcre-devel –y
2、编译安装httpd-2.4.1
下载httpd-2.4.1到本地,可去互联网下载此源码包.命令如下:
# tar xf httpd-2.4.1.tar.bz2
# cd httpd-2.4.1
# ./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd --enable-so --enable-ssl
--enable-cgi --enable-rewrite --with-zlib
# make
# make install
3、设置httpd的Pid文件的路径 方法如下:
# vim /etc/httpd/httpd.conf 添加如下一行:
PidFile "/var/run/httpd.pid"
4、为了更好的使用httpd服务 在此我们提供一个SysV服务脚本/etc/rc.d/init.d/httpd
#vim /etc/rc.d/init.d/httpd 添加内容如下:(你也可事先在别的虚拟机上安装一个rpm的httpd 然后拷贝其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
# chmod +x /etc/rc.d/init.d/httpd 为此脚本赋予执行权限
# chkconfig --add httpd 将此服务加入服务列表
至此httpd编译安装结束 下面就可启动服务进行测试了
#service httpd start 启动服务
#netstat –tnlp 查看下有无80端口的服务
到此apache安装完毕
下面开始安装mysql-5.5.19
1、 准备数据存放的文件系统 (一般我们将数据目录放在逻辑卷上,以方便快照来备份数据)
#fdisk /dev/sda 新建一个逻辑分区 将其id改为8e 这里创建了一个分区/dev/sda5
#partprobe /dev/sda
#vgcreate myvg /dev/sda5
#lvcreate –L 2G –n mysql myvg
#mke2fs –j /dev/myvg/mysql
#mkdir –pv /mydata/mysql 我们将mysql的数据库存放/mydata/mysql目录中
#vim /etc/fstab 添加如下行
/dev/myvg/mysql /mydata ext3 defaults 0 0
#mount –a
2、新建用户以安全方式运行进程:
# groupadd -r mysql
# useradd -g mysql -r -s /sbin/nologin -M mysql
# chown -R mysql:mysql /mydata/mysql
3、安装并初始化mysql-5.5.19
下载平台对应的mysql版本至本地 以下为操作步骤
# tar xf mysql-5.5.19-linux2.6-i686.tar.gz -C /usr/local
# cd /usr/local/
# ln -sv mysql-5.5.19-linux2.6-i686 mysql
# cd mysql
# chown -R mysql:mysql .
# scripts/mysql_install_db --user=mysql --datadir=/mydata/data
# chown -R root .
4、在此为mysql提供主配置文件:
# cd /usr/local/mysql
# cp support-files/my-large.cnf /etc/my.cnf
#vim /etc/my.cnf 修改如下
thread_concurrency = 2 此处修改thread_concurrency的值为本机CPU个数乘以2
datadir = /mydata/data 添加如下行指定mysql数据文件的存放位置
5、同样为了方便使用 在此为mysql提供sysv服务脚本:
# cd /usr/local/mysql
# cp support-files/mysql.server /etc/rc.d/init.d/mysqld
# chkconfig --add mysqld添加至服务列表
# chkconfig mysqld on
以下是为使用mysql符合相应的系统规范,我们将其各种文件导出 操作如下:
输出mysql的man手册至man命令的查找路径:
#vim /etc/man.config 添加如下行
MANPATH /usr/local/mysql/man
输出mysql的头文件至系统头文件路径/usr/include:
# ln -sv /usr/local/mysql/include /usr/include/mysql
输出mysql的库文件给系统库查找路径:
# echo '/usr/local/mysql/lib' > /etc/ld.so.conf.d/mysql.conf
# ldconfig 重新载入库文件
修改PATH环境变量,让系统可以直接使用mysql的相关命令。
#vim /etc/profile 添加如下行
PATH=$PATH:/usr/local/mysql
#export PATH=$PATH:/usr/local/mysql 即可使用mysql命令
到此mysql安装完毕
最后编译安装php-5.3.10
1、准备工作
配置好yum源(可以是本地系统光盘)后执行如下命令:
#yum -y groupinstall "X Software Development"
如果想让编译的php支持mcrypt扩展,此处还需要下载如下两个rpm包并安装之:
libmcrypt-2.5.7-5.el5.i386.rpm
libmcrypt-devel-2.5.7-5.el5.i386.rpm
#rpm –Uvh libmcrypt-2.5.7-5.el5.i386.rpm libmcrypt-devel-2.5.7-5.el5.i386.rpm
2、编译安装php-5.3.10
# tar xf php-5.3.10.tar.bz2
# cd php-5.3.10
# ./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 --with-apxs2=/usr/local/apache/bin/apxs --with-mycrypt
# make
# make test
# make intall
# cp php.ini-production /usr/local/php/lib/php.ini 为php提供配置文件
3、 编辑apache配置文件httpd.conf,以apache支持php
# vim /etc/httpd/httpd.conf 添加如下二行
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
将DirectoryIndex index.html 修改为:
DirectoryIndex index.php index.html
php也编译成功了 此时整个LAMP的搭建已成功 我们就可以为其提供测试页面测试了