LAMP之apache2.4

http2.4系列相对于http2.2系列新增的功能有

1) MPM支持在运行时装载

2)支持event

3)异步读写

4)在每模块及每目录上指定日志级别

5)每请求配置

6)增强版的表达式分析器

7)毫秒级的keepalive timeout

8)支持主机名的虚拟主机不在需要NameVirtualHost指令

9)支持使用自定义变量

新增的模块由mod_proxy_fcgi,mod_ratelimit,mod_request,mod_remoteip

对应IP的访问做了修改,不在使用order,allow deny这些机制,而是统一使用require进行

一:环境准备:

# yum groupinstall "Development tools" -y

# yum groupinstall "Desktop Platform Development" -y

# yum groupinstall "Server Platform Development" -y

wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-6.repo

yum install gd-devel libjpeg-devel libpng-devel freetype-devel libxml2-devel curl-devel bzip2-devel net-snmp-devel pcre-devel openssl-devel  mhash-devel  mcrypt libmcrypt-devel libcurl-devel

二:安装arp

[[email protected] ~]# tar xf apr-1.5.2.tar.gz
[[email protected] ~]# cd apr-1.5.2

[[email protected] apr-1.5.2]# ./configure --prefix=/usr/local/apr

[[email protected] apr-1.5.2]# make && make install

三:安装arp-util

[[email protected] ~]# tar xf apr-util-1.5.4.tar.gz
[[email protected] ~]# cd apr-util-1.5.4

[[email protected] apr-util-1.5.4]# ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr

[[email protected] apr-util-1.5.4]# make && make install

四:安装httpd

[[email protected] ~]# tar xf httpd-2.4.18.tar.gz
[[email protected] ~]# cd httpd-2.4.18

[[email protected] httpd-2.4.18]# ./configure --prefix=/usr/local/httpd --sysconfdir=/etc/httpd --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-modeles=most --enable-mpms-shared=all --with-mpm=event --with-sockets

1:导出httpd头文件
[[email protected] ~]# ln -sv /usr/local/httpd/include /usr/include/httpd
`/usr/include/httpd‘ -> `/usr/local/httpd/include‘

2:环境变量导出:

[[email protected] ~]# echo "export PATH=/usr/local/httpd/bin:$PATH" > /etc/profile.d/httpd.sh
[[email protected] ~]# source /etc/profile.d/httpd.sh

3:建立启动脚本

#!/bin/bash
#
# httpd        Startup script for the Apache HTTP Server
#
# chkconfig: - 85 15
# description: The Apache HTTP Server is an efficient and extensible  \
#          server implementing the current HTTP standards.
# processname: httpd
# config: /etc/httpd/httpd.conf
# config: /etc/sysconfig/httpd
# pidfile: /var/run/httpd/httpd.pid
#
### BEGIN INIT INFO
# Provides: httpd
# Required-Start: $local_fs $remote_fs $network $named
# Required-Stop: $local_fs $remote_fs $network
# Should-Start: distcache
# Short-Description: start and stop Apache HTTP Server
# Description: The Apache HTTP Server is an extensible server
#  implementing the current HTTP standards.
### END INIT INFO
# 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/httpd/bin/apachectl
httpd=/usr/local/httpd/bin/httpd
prog=httpd
pidfile=${PIDFILE-/var/run/httpd/httpd.pid}
lockfile=${LOCKFILE-/var/lock/subsys/httpd}
RETVAL=0
STOP_TIMEOUT=${STOP_TIMEOUT-10}
# The semantics of these two functions differ from the way apachectl does
# things -- attempting to start while running is a failure, and shutdown
# when not running is also a failure.  So we just do it the way init scripts
# are expected to behave here.
start() {
        echo -n $"Starting $prog: "
        LANG=$HTTPD_LANG daemon --pidfile=${pidfile} $httpd $OPTIONS
        RETVAL=$?
        echo
        [ $RETVAL = 0 ] && touch ${lockfile}
        return $RETVAL
}
# When stopping httpd, a delay (of default 10 second) is required
# before SIGKILLing the httpd parent; this gives enough time for the
# httpd parent to SIGKILL any errant children.
stop() {
    echo -n $"Stopping $prog: "
    killproc 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=6
        echo $"not reloading due to configuration syntax error"
        failure $"not reloading $httpd due to configuration syntax error"
    else
        # Force LSB behaviour from killproc
        LSB=1 killproc -p ${pidfile} $httpd -HUP
        RETVAL=$?
        if [ $RETVAL -eq 7 ]; then
            failure $"httpd shutdown"
        fi
    fi
    echo
}
# See how we were called.
case "$1" in
  start)
    start
    stop
    ;;
  status)
        status -p ${pidfile} $httpd
    RETVAL=$?
    ;;
  restart)
    stop
    start
    ;;
  condrestart|try-restart)
    if status -p ${pidfile} $httpd >&/dev/null; then
        stop
        start
    fi
    ;;
  force-reload|reload)
        reload
    ;;
  graceful|help|configtest|fullstatus)
    $apachectl [email protected]
    RETVAL=$?
    ;;
  *)
    echo $"Usage: $prog {start|stop|restart|condrestart|try-restart|force-reload|reload|status|fullstatus|graceful|help|configtest}"
    RETVAL=2
esac
exit $RETVAL

[[email protected] ~]# vim /etc/rc.d/init.d/httpd

[[email protected] ~]# chmod +x /etc/rc.d/init.d/httpd

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

四:注意点:

--with-mpm=event 支持event 模型

--enable-so 支持动态装卸模块

--enable-modeles=most 启用大部分模块支持

--enable-mpms-shared=all  所有模块做成共享

--with--xxx  默认目录是/usr. 如果是自己编译,就指定目录。

/usr/local/apache24/build/里config.nice 文件,是查看编译时用到的参数

httpd -M  查看启动的动态模块

五:httpd.conf 配置文件讲解

1:基于IP的控制法则

DocumentRoot "/usr/local/apache24/htdocs"

<Directory "/usr/local/apache24/htdocs">

Options Indexes FollowSymLinks

AllowOverride None

Require all granted

</Directory>

控制特定的IP访问:

Reauire all granted: 允许所有主机访问.

Require all deny   : 拒绝所有主机访问

控制特定的IP访问:

Require ip IPADDR : 指定来源主机访问

Require not ip IPADDR: 拒绝指定来源地址的主机访问。

IPADDR为下面几种形式:

ip: 192.168.1.1

Network/Mask: 192.168.1.1/255.255.255.0

Network/Length: 192.168.1.1/24

Net:  192.168

控制特定主机(HOSTNAME)访问

Require host HOSTNAME

Require not host HOSTNAME

HOSTNAME为下面形式:

FQDN:特定主机

DOMAIN:指定域内所有主机。

2:虚拟主机:

在httpd.conf关闭中心主机:#DocumentRoot

#支持FQDN的不在需要NameVirtualHost指令

在httpd.conf打开Include conf/extra/httpd-vhosts.conf 支持

-------------例子如下--------------------------

<VirtualHost *:80>

DocumentRoot "/vhost/www.test.com"

ServerName www.test.com

ServerAlias test.com

ErrorLog "logs/test_error_log"

CustomLog "logs/test_access_log" combined

<Directory "/vhost/www.test.com">

Options None

AllowOverride None

Require all granted

</Directory>

</VirtualHost>

基于用户验证

<VirtualHost *:80>

DocumentRoot "/vhost/www.test2.com"

ServerName www.test2.com

ServerAlias test2.com

ErrorLog "logs/test2_error_log"

CustomLog "logs/test2_access_log" combined

<Directory "/vhost/www.test2.com">

Options None

AllowOverride AuthConfig    //需要认证

AuthType Basic                    //认证类型为基本认证

AuthName "shouquan"        // 这个只是给用户显示一个标题

AuthUserFile /etc/httpd/.userpasswd   // 认证的密码文件

Require valid-user            //可以读取认证文件的用户,vaild-user 表示所有合法用户

</Directory>

</VirtualHost>

3:生成认证文件 .userpasswd  用户为wskfnso

# htpasswd -c -m /etc/httpd/.userpasswd wskfnso

------------------------------------------------------

4:在window的hosts文件中添加对两个域名的解析.测试如下

时间: 2024-10-10 00:53:37

LAMP之apache2.4的相关文章

Centos编译安装 LAMP (apache-2.4.7 + mysql-5.5.35 + php 5.5.8)+ Redis

转载地址:http://www.cnblogs.com/whoamme/p/3530056.html 软件源代码包存放位置:/usr/local/src 源码包编译安装位置:/usr/local/软件名字 修改源: 1.进入存放源配置的文件夹 cd /etc/yum.repos.d 2.备份默认源 mv ./CentOS-Base.repo ./CentOS-Base.repo.bak 3.使用wget下载163的源 wget http://mirrors.163.com/.help/CentO

LAMP环境 源码包安装

linux的学习很早就开始了,大学的时候的时候有有学过unix,后来每年都有去看看linux,因为在小城市的缘故,很少会实际工作中用到,基本都是智慧云之类的,同事也说,你学起来也用不上,IT生态不好,没用!可是自己心里一直有想去学linux,于是这次下决心自己搭建一个lamp环境,记录下来,当做学习笔记. 在网上搜索的lamp环境的资料,很多都是yum的,或者是老资料,为了让自己多敲几段命令,所以选择了源码包的方式.说真的,对于我这种初学者来说,较新版的源码包哪怕是有一点点的安装配置的不一样,可

我的ubuntu新系统自动装软件脚本

装一些常用软件 配一下环境变量 #!/bin/bash #download g++ sudo apt-get install g++ -y #download codeblocks sudo apt-get install codeblocks -y #download java sudo apt-get install default-jre -y sudo apt-get install default-jdk -y #backup /etc/profile sudo cp /etc/pro

Linux下源码安装LAMP(CentOS 6.8 + Apache2.4 + MySQL5.5 + PHP7)环境

一.简介 PHP已经走过了20年的历史,PHP7对于上一版本的PHP5.*,在性能方面有了跨越式的提升,当然也有一些新增的特性和改变,具体大家可以参考网上更为详细的相关资料文档. 二.系统环境 系统平台:CentOS release 6.8 (Final) Apache版本:httpd-2.4.6.tar.gz MySQL 版本:mysql-5.5.53.tar.gz PHP版本:php-7.1.0.tar.gz 三.安装前准备 1.库文件准备 在安装PHP之前,应先安装PHP需要的最新版本库文

Ubuntu 16.04 LAMP server 指南 - 配置 Apache2.4,PHP7,和MariaDB(而不是MySQL)

翻译自:https://www.howtoforge.com/tutorial/install-apache-with-php-and-mysql-on-ubuntu-16-04-lamp/ 昨天在虚拟机里面安装ubuntu server ,然后配置php开发环境,参考了这篇文章,一次性把所有的东西都安装配置好了,所以想把这篇文章记录下来.希望能够帮助到初学者一次性搞定这些配置(避免纠结),然后就可以愉快地编程了,嘿嘿. 以下是我翻译的内容,完全对照原文,没有自己改动的部分(因为原文已经很完美了

LAMP搭建 (apache2.4 FCGI+php5+mysql5.5)

网络拓扑: 系统及软件版本: CENTOS 6.5  apache2.4.12   php5.5.8  mysql5.5.44 一.安装APACHE 1.解决依赖 LAMP yum install gcc gcc-c++ gcc-g77 flex bison autoconf automake bzip2-devel zlib-devel ncurses-devel libjpeg-devel libpng-devel libtiff-devel freetype-devel pam-devel

年终福利,PHP7+Apache2.4+MySQL5.6 源码编译安装,环境配置,搭建你自己的LAMP环境

PHP7 都出来了,你还在玩PHP5吗? MySQL5.6 早都出来了,你还在玩MySql5.2吗? Apache2.4 早都出来了,你还在玩Apache2.2吗? 笔者不才,愿意亲自搭建环境,供搭建参考.这里是源码安装的奥,什么一键安装包,什么yum安装,什么rpm安装都统统略过(笔者是一个自虐狂,就像windows下安装软件一样,不喜欢安装在默认的位置也就是C盘了,否则系统盘就爆了) 安装之前了,要说明下,要保证PHP在最后安装,原因后面揭晓.安装任何一个软件之前,都要确保它所依赖的库都安装

Centos 6.5 配置分离式LAMP平台环境 多服务器编译安装Apache2.4.x PHP5.4.x MariaDB5.5.x

这次LAMP环境才去多服务器方式,apache部署在一台服务器上 PHP部署在一台服务器上 MariaDB部署在一台服务器上. 测试OS:Centos 6.5 x86_64 软件版本:apache 2.4.x php5.4.x MariaDB 5.5.x 网络环境: [[email protected] ~]# ifconfig eth0 | awk -F'[ :]+' '/inet addr/{print$4}' 172.16.41.163 ###httpd服务器 [[email protec

LAMP编译安装(一)——安装Apache2.4

背景介绍 LAMP是LNMP结构提出之前风靡了很久的结构,本系列就从无到有一点点介绍LAMP的编译安装.首先,介绍下本系列的拓扑结构图 此时服务器响应客户端访问可以分为几种应答方式: 1.客户端向服务器端发起请求 2.服务器端查看请求类型,当为静态页面请求,直接返回结果 1.客户端向服务器端发起请求 2.服务器端查看请求类型,当为动态页面请求,通过配置文件中设置的反向代理,通过fcgi协议交给后端PHP服务器 3.PHP服务器上启用php-fpm服务,监听在一个套接字上想用请求,并将结果反馈给h