编译安装LAMP之一

环境:
CentOS-6.5-i386-minimal

httpd-2.2.27.tar.gz

mysql-5.5.38-linux2.6-i686.tar.gz

php-5.5.14.tar.gz

编译安装的原则:对于我们来说,需要定制的就直接编译,其余的一切皆yum / apt-get搞定

1、关闭iptables和SELinux

[[email protected] ~]# service iptables stop
[[email protected] ~]# setenforce 0

2、安装开发工具包

[[email protected] ~]# yum -y install wget gcc-c++ ncurses ncurses-devel cmake make perl bison openssl openssl-devel gcc* libxml2 libxml2-devel curl-devel libjpeg* libpng* freetype*

# 或者更简单粗暴的,我喜欢这种方式
[[email protected] ~]# yum -y groupinstall "Development Tools"  openssl openssl-devel

一、编译httpd-2.2.27

注意,httpd-2.4.x需要较新版本的apr和apr-util,因此需要事先对其进行升级。建议使用源码编译安装,因为系统自带apr,但是版本较低,但不能卸载,存在依赖关系。所以我们把新版本的apr与老版本的apr不安装在同一个地方即可。

官方文档这样说到:

  • apr/apr-util >= 1.2

    apr and apr-util are bundled with the Apache HTTPd source releases, and will be used without any problems in almost all circumstances. However, if apr orapr-util, versions 1.0 or 1.1, are installed on your system, you must either upgrade your apr/apr-util installations to 1.2, force the use of the bundled libraries or have httpd use separate builds. To use the bundled apr/apr-util sources specify the --with-included-apr option to configure:

# Build and install apr 1.2
cd srclib/apr
./configure --prefix=/usr/local/apr-httpd/
make
make install

# Build and install apr-util 1.2
cd ../apr-util
./configure --prefix=/usr/local/apr-util-httpd/ --with-apr=/usr/local/apr-httpd/
make
make install

# Configure httpd
cd ../../
./configure --with-apr=/usr/local/apr-httpd/ --with-apr-util=/usr/local/apr-util-httpd/

1、编译httpd

[[email protected] ~]# tar xf httpd-2.2.27.tar.gz -C /usr/local/src
[[email protected] ~]# cd /usr/local/src
[[email protected] src]# cd httpd-2.2.27/
[[email protected] httpd-2.2.27]# ./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd --enable-so --enable-ssl --enable-cgi --enable-modules=most --enable-mods-shared=most --enable-rewrite --with-zlib --with-pcre --enable-mpms-shared=all --with-apr=/usr/local/apr-httpd --with-apr-util=/usr/local/apr-util-httpd

[[email protected] httpd-2.2.27]# make && make install

选项解释:
--sysconfdir=/etc/httpd      # 指定配置文件安装位置
--enable-so                  # 支持动态共享模块如果没有这个模块PHP将无法与apache结合工作
--enable-ssl                 # 启用支持ssl
--enable-cgi                 # 支持cgi
--enable-rewrite             # 支持URL重写
 --with-zlib                 # 压缩库,在互联网上传播时可节约带宽
--with-apr=/usr/local/apr-httpd     # 指定apr路径
--with-apr-util=/usr/local/apr-util-httpd     # 指定apr-util路径
--enable-mpms-shared=all     # 支持多道处理模块

2、启动httpd服务

编译完成后,在/etc/init.d/目录下是没有httpd这个服务启动脚本的。那么有两种方式

  • 通过 bin\apachectl 启动
  • 提供一个httpd启动脚本

来看看第一种方式:

# /usr/local/apache/bin/apachectl {start|stop|restart}
[[email protected] ~]# /usr/local/apache/bin/apachectl start
httpd: Could not reliably determine the server‘s fully qualified domain name, using localhost.localdomain for ServerName
[[email protected] ~]# ps -ef | grep httpd
root     29954     1  0 09:29 ?        00:00:00 /usr/local/apache/bin/httpd -k start
daemon   29955 29954  0 09:29 ?        00:00:00 /usr/local/apache/bin/httpd -k start
daemon   29956 29954  0 09:29 ?        00:00:00 /usr/local/apache/bin/httpd -k start
daemon   29957 29954  0 09:29 ?        00:00:00 /usr/local/apache/bin/httpd -k start
daemon   29958 29954  0 09:29 ?        00:00:00 /usr/local/apache/bin/httpd -k start
daemon   29959 29954  0 09:29 ?        00:00:00 /usr/local/apache/bin/httpd -k start

# OK, 我们看到服务已经启动

为了方便管理, 我们进行一些额外的配置


3、更改pid的位置

我们看到httpd是以daemon用户身份运行的,按照惯例我们使用apache用户。编译安装httpd.pid默认存放在/usr/local/apache/logs目录下,这不符合我们的习惯。

[[email protected] ~]# groupadd -r apache
[[email protected] ~]# useradd -r -g apache -s /sbin/nologin apache

# 编辑httpd.conf配置文件
[[email protected] ~]# vi /etc/httpd/httpd.conf 
Pidfile "/var/run/httpd.pid"
User apache
Group apache

# 重启httpd服务
[[email protected] ~]# /usr/local/apache/bin/apachectl start

但是, 使用apachectl不方便, 而且提示非常不友好,所以我们还是提供httpd服务启动脚本:

[[email protected] ~]# vi /etc/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 [email protected]  
       RETVAL=$?  
       ;;  
 *)  
       echo $"Usage: $prog {start|stop|restart|condrestart|reload|status|fullstatus|graceful|help|configtest}"  
       exit 1  
esac  
   
exit $RETVAL

测试一下我们的启动脚本:

[[email protected] ~]# chmod +x /etc/init.d/httpd
[[email protected] ~]# service httpd status
httpd (pid  30050) is running...
[[email protected] ~]# service httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd: httpd: Could not reliably determine the server‘s fully qualified domain name, using localhost.localdomain for ServerName
                                                           [  OK  ]

把httpd添加到服务列表,使其能开机启动

[[email protected] ~]# chkconfig --add httpd
[[email protected] ~]# chkconfig httpd on

4、把httpd的bin目录添加到PATH

[[email protected] ~]# vi /etc/profile.d/httpd.sh
export PATH=$PATH:/usr/local/apache/bin
[[email protected] ~]# . /etc/profile.d/httpd.sh

# OK
# 测试httpd.conf配置文件语法
[[email protected] ~]# httpd -t

[[email protected] ~]# httpd -l
[[email protected] ~]# httpd -M

二、安装mysql

我是下载的通用二进制包:mysql-5.5.38-linux2.6-i686.tar.gz

1、添加mysql用户和组

[[email protected] ~]# groupadd -r mysql
[[email protected] ~]# useradd -r -g mysql -s /sbin/nologin mysql

2、数据目录规划

[[email protected] ~]# mkdir -pv /mydata/data
mkdir: created directory `/mydata‘
mkdir: created directory `/mydata/data‘
[[email protected] ~]# chown -R mysql:mysql /mydata/data

3、解压

[[email protected] ~]# tar xf mysql-5.5.38-linux2.6-i686.tar.gz -C /usr/local/src
[[email protected] ~]# cd /usr/local
[[email protected] local]# ln -sv src/mysql-5.5.38-linux2.6-i686 mysql
`mysql‘ -> `src/mysql-5.5.38-linux2.6-i686‘

4、初始化数据库

[[email protected] mysql]# scripts/mysql_install_db --basedir=/usr/local/mysql --datadir=/mydata/data --user=mysql
[[email protected] mysql]# chown -R root:root /usr/local/src/mysql-5.5.38-linux2.6-i686/

5、提供配置文件和启动脚本

[[email protected] mysql]# cp support-files/mysql.server /etc/init.d/mysqld
[[email protected] mysql]# chkconfig --add mysqld
[[email protected] mysql]# chkconfig mysqld on

[[email protected] mysql]# cp support-files/my-medium.cnf /etc/my.cnf

## 编辑配置文件my.cnf

# The following options will be passed to all MySQL clients
[client]
#password       = your_password
port            = 3306
socket          = /tmp/mysql.sock
character-set-server = utf8

# Here follows entries for some specific programs

# The MySQL server
[mysqld]
port            = 3306
socket          = /tmp/mysql.sock
pid-file         = /mydata/data/mysqld.pid
character-set-server = utf8
collation-server = utf8_unicode_ci
basedir         = /usr/local/mysql
datadir         = /mydata/data
user            = mysql
skip-name-resolve

6、启动mysql

[[email protected] ~]# service mysqld start
Starting MySQL... SUCCESS! 
[[email protected] ~]# netstat -tulpn  | grep 3306
tcp        0      0 0.0.0.0:3306        0.0.0.0:*          LISTEN      30997/mysqld      

# 添加到PATH
[[email protected] ~]# vi /etc/profile.d/mysql.sh
export PATH=$PATH:/usr/local/mysql/bin
[[email protected] ~]# . /etc/profile.d/mysql.sh

### 进行安全性设置
[[email protected] ~]# /usr/local/mysql/bin/mysql_secure_installation

7、其他设置

[[email protected] ~]# vim /etc/man.config 
MANPATH /usr/local/mysql/man

[[email protected] ~]# ln -sv /usr/local/mysql/include/ /usr/include/mysql
`/usr/include/mysql‘ -> `/usr/local/mysql/include/‘

[[email protected] ~]# vim /etc/ld.so.conf.d/mysql.conf
/usr/local/mysql/lib

[[email protected] ~]# ldconfig

编译安装LAMP之一,布布扣,bubuko.com

时间: 2024-11-08 20:26:32

编译安装LAMP之一的相关文章

编译安装LAMP[两种结合方式]

本文旨在实践编译安装LAMP环境,搭建Zblog系统,使用Xcache为PHP加速,分离PHP与Apache Server LAMP基础知识 Linux + Apache + MySQL[MariaDB] + PHP[Perl|Pyton] 是一套基础的web环境: Apache有2.2版本,和最新的2.4版本,2.4版本支持Event MPM可用作生产环境,在http2.2中有3种MPM,为不同的进程文件,切换需要重启Apache服务:而2.4中MPM做成了DSO,可动态加载切换: Apach

编译安装LAMP及分离式LAMP平台构建

前言 LAMP网站架构是目前国际流行的Web框架,该框架包括:Linux操作系统,Apache网站服务器,MySQL数据库,Perl.PHP或者Python编程语言,所有组成产品均是开源软件,是国际上成熟的架构框架,很多流行的商业应用都是采取这个架构,和Java/J2EE架构相比,LAMP具有Web资源丰富.轻量.快速开发等特点,与微软的.NET架构相比,LAMP具有通用.跨平台.高性能.低价格的优势,因此LAMP无论是性能.质量还是价格都是企业搭建网站的首选平台.但由于MySQL作为SUN公司

Centos 7.0 编译安装LAMP(Linxu+apache+mysql+php)之源码安装Mysql (二)

mysql 简介: MySQL是一个关系型数据库管理系统,关系数据库将数据保存在不同的表中,这样就增加了速度并提高了灵活性.目前其属于 Oracle 旗下产品.MySQL 是最流行的关系型数据库管理系统之一,在 WEB 应用方面,MySQL是最好的 RDBMS (Relational Database Management System,关系数据库管理系统) 应用软件.MySQL所使用的 SQL 语言是用于访问数据库的最常用标准化语言. 安装环境: 系统: centos 7.0 最小化安装 软件

实践作业之编译安装LAMP

题目1:httpd所支持的处理模型有哪些,他们的分别使用于哪些环境. (1)prefork模型: 功能:多进程模型,每个进程响应一个请求 工作方式: ①一个主进程:负责生成子进程及回收子进程(工作进程),负责创建套接字,负责接收请求,并将其派发给某子进程进行处理 ②n个子进程:每个子进程一个请求 主控进程会预先生成几个空闲子进程,随时等待用于响应用户请求.根据处理过程,可能会改变空闲进程的数量,需要定义最大空闲和最小空闲 (2)worker模型: 功能:多进程多线程模型,每个线程处理一个用户请求

ubuntu10.04编译安装LAMP

ubuntu10.04编译安装LAMP以及简单wordpress的使用 : http://linuxme.blog.51cto.com/1850814/971631 一.源码安装LAMP 网上有一堆关于介绍lamp的在这里我就不罗嗦了,直接上配置过程 1.apr包的安装 apr简介: The mission of the Apache Portable Runtime (APR) project is to create and maintain software libraries that

编译安装LAMP(两种场景)

编译安装LAMP 场景一:AP组合以模块方式结合(编译PHP作为httpd的模块):进而完成虚拟主机PMA(phpmyadmin)和discuz论坛 场景二:AP组合以fpm方式,PHP独立守护进程运行:进而完成虚拟主机PMA(phpmyadmin)和discuz论坛 ==========================场景一============================ 拓扑结构: 主机一 网卡1IP为172.20.1.100 网卡2IP为192.168.217.219 在此计算机上

编译安装 LAMP 平台

> 一.软件包 Linux:CentOS-6.4     Apache:httpd-2.4.9     MySQL:mysql-5.6.19     PHP:php-5.4.30 二.编译安装 httpd 在安装 httpd 之前,首先要安装两个依赖包:apr 和 apr-util.apr 是 apache portable runtime 的缩写,是 apache 提供的一个可以跨平台使用的 API.安装方法很简单,就是编译安装的三步骤: # apr tar xf apr-1.5.1.tar.

Centos 7.0 编译安装LAMP(Linxu+apache+mysql+php)之源码安装Apache (一)

Apache 简介: Apache是世界使用排名第一的Web服务器软件.它可以运行在几乎所有广泛使用的计算机平台上,由于其跨平台和安全性被广泛使用,是最流行的Web服务器端软件之一.它快速.可靠并且可通过简单的API扩充,将Perl/Python等解释器编译到服务器中. 安装环境: 系统: centos 7.0 最小化安装 软件:httpd-2.4.26 依赖包:apr .apr-util .pcre .gcc .gcc-c++ .perl-dvel.perl.openssl .openssl-

编译安装LAMP平台环境_xcache

基于Linux.Apache.Mysql.Php编译安装LAMP环境平台,并使用xcache加速php 编译安装LAMP平台: 1.下载软件包, 安装依赖包 # yum install -y pcre-devel 2.解包安装apache 2.1 编译安装apr-1.5.0 # tar xvf apr-1.5.0.tar.bz2 # cd apr-1.5.0 && ./configure --prefix=/usr/local/apr # make && make inst