编译安装HTTPD 2.4.9版本

编译安装HTTPD 2.4.9版本

? ?服务脚本:/etc/rc.d/init.d/httpd

? ?脚本配置文件路径:/etc/sysconfig/httpd

? ?运行目录:/etc/httpd

? ?配置文件:

? ? ? ?主配置:/etc/httpd/conf/httpd.conf

? ? ? ?扩展配置:/etc/httpd/conf.d/*.conf

? ?监听的Socket: tcp的80, 443是https/tcp的监听端口

? ?在内核中使用小于1023的端口的只有管理员

? ?文档根目录:/var/www/html

? ?CGI目录:/var/www/cgi-bin/

?
?

? ?依赖于更高版本的apr和apr-util。apr全称为apache portable runtime(apache运行时移植工具)、是让apache跨平台的工具、是个底层库。

? ?这里的安装不做过多的详细解释了、可以参考之前写过的文章、安装都是大同小异:

?

?

? ?实战步骤:

===============================================================================

?


1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33


(1) 解决依赖关系

????prel兼容的正则表达式库

????# yum -y install pcre-devel

????# yum -y groupinstall "Server Platform Development"

????# yum -y groupinstall "Development tools"

(2) 编译安装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

(3) 编译安装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

?
?

?
?

?
?

?
?

(4) 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

????# make && make install

--prefix=/usr/local/apache:指定安装路径、不使用默认路径

--sysconfdir=/etc/httpd24:指定配置文件的路径、24表示版本、为了不跟我本机上的2.2的重复

--enable-so:表示基于DSO动态加载模块的

--enable-ssl:这项是支持https协议的

--enable-cgi:支持CGI机制的

--enable-rewrite:支持URL重写的

--with-zlib:zlib是一个网络上发送数据报文时的一个通用压缩库的API

--with-pcre:通常支持Perl所用到的一个库

--with-apr=/usr/local/apr:指定新的apr的路径

--with-apr-util=/usr/local/apr-util/:指定新的apr-util的路径

--enable-modules=most:most表示启用大多数常用的模块

--enable-mpms-shared=all:所有的MPM模块都编译

--with-mpm=event:明确指定启用event模块

?
?

?
?

? ?后续的配置:

1) 修改服务脚本
先把 # cp /etc/rc.d/init.d/httpd /etc/rc.d/init.d/httpd 24

修改下apache自己的服务脚本 vim /etc/rc.d/init.d/httpd 24 // 修改的部分我会要红色注释

?

#!/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/conf/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/bin/apachectl //这两行改下路径,
了解你的apachectl安装在哪个路径下
我的是装在 /usr/local/apache/bin

httpd=${HTTPD-/usr/local/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 -p ${pidfile} -d ${STOP_TIMEOUT} $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)

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

?
?

? ? ? ?2) 输出二进制程序

?
?

? ? ? ? ? ?# vim /etc/profile.d/httpd24.sh

export PATH=/usr/local/apache/bin:$PATH

3) 修改 apache下的 vim /etc/httpd24/httpd.conf

开启
ServerName 172.16.21.1:80 // 172.16.21.1 这是我的本机ip地址

? ?安装配置好之后我们查看一下刚安装好的HTTPD版本:

? ?# httpd -v

? ?最后可以启动了、再查看一下端口是否在监听状态了、当然你还可以给他提供一个服务脚本:

? ?# apachectl star

? ?# ss -tnl?

===============================================================================

时间: 2024-12-24 17:50:58

编译安装HTTPD 2.4.9版本的相关文章

编译安装httpd 2.4

编译安装LAMP之:编译安装httpd 2.4 环境介绍: 系统环境:CentOS6.5 所需软件包:apr-1.5.2.tar.gz.apr-util-1.5.2.tar.gz.httpd-2.4.6.tar.gz 注意:httpd2.4需要依赖apr和arp-util 1.4以上版本 CentOS编译安装Apache准备:确保开发包组已安装(Development tools.Server Platform Development) yum groupinstall "Development

CentOS 6.5下编译安装httpd+mysql+php+phpMyAdmin

CentOS 6.5下编译安装httpd+mysql+php+phpMyAdmin+cacti+nagios 一.安装环境 Linux系统:CentOS 6.5 Apache版本:http-2.4.12 MySQL版本:MySQL 5.6.24 PHP版本:PHP-5.6.8 基本的安装顺序为:先安装httpd,然后安装mysql,最后安装PHP. 软件包: [[email protected] httpdbao]# ll total 334908 -rwxrw-rw-. 1 root root

编译安装httpd

CentOS 6默认提供的是httpd 2.2,现尝试在CentOS 6上编译安装httpd 2.4 1.编译安装apr和apr-util httpd程序依赖于apr和apr-util.apr(Apache portable Run-time libraries,Apache可移植运行库)旨在为上层的httpd应用程序提供一个可以跨越多种操作系统平台使用的底层支持接口库,给httpd程序提供了一个虚拟机环境,由此实现了httpd的跨平台性 httpd 2.4依赖apr 1.4以上的版本,因此若a

编译安装httpd 2.4 ---格式待整理

httpd 2.4 版本需要依赖于apr 1.4版本httpd 依赖于 apr,apr-util    其安装又先后顺序之分:        1.apr        2.apr-util        3.httpd [[email protected] httpd]# rpm -q httpdhttpd-2.2.15-39.el6.centos.x86_64[[email protected] httpd]# service httpd stopStopping httpd:        

编译安装httpd服务

首先,编译安装http,需要有它的源码包,这里提供官方下载:http://httpd.apache.org 我使用的是httpd-2.4.4.tar.bz2软件包 在进行源码编译安装之前,我们需要设定一下安装环境 1.安装开发包组: # yum groupinstall "Development tools" "Server Platform Development" "Desktop Platform Development" "Co

linux命令:编译安装httpd、mysql、php等LAMP环境

Httpd 2.4新特性: 1.MPM可于运行时装载: --enable-mpms-shared=all --with-mpm=event  编译安装是指定MPM运行模块为event 2.Event MPM 支持event新的多路处理模块 3.异步读写 4.在每模块及每目录上指定日志级别 5.每请求配置: <If>,<ElseIf>,<Else>; 6.增强的表达式分析器: 7.毫秒级的Keepalive Timeout; 8.基于域名的虚拟主机不再需要NameVirt

apache编译安装 httpd 2.2 httpd 2.4

#apache编译安装#httpd 2.2 , httpd 2.4 #!/bin/sh #apache编译安装 #httpd 2.2 , httpd 2.4 #centos #rpm -e httpd* Ve=2.2 [ $1 = 2.4 ] && Ve=2.4 || Ve=2.2 #设置安装版本2.2或2.4 #目录 Ddir=/it/tools #定义下载目录 Sdir=/www/server #定义安装目录 Adir=$Sdir/apache$Ve [ ! -d $Ddir ] &a

Linux下用Intel编译器编译安装NetCDF-Fortan库(4.2版本后)

本来这个问题真的没必要写的,可是真的困扰我太久%>_<%,决定还是记录一下. 首先,最权威清晰的安装文档还是官方的: Building the NetCDF-4.2 and later Fortran libraries (写此文时,最近版为4.2) 那这个文档最开始就告诉我们,自NetCDF库4.2版本以后,Fortran的库和C的库就要分开build啦!而且要装Fortran的库必须先装好C的库. 所以先装C的库咯:仍然官方文档: Getting and Building NetCDF-C

CentOS 6.4源码编译安装httpd并启动测试

今天来总结一下在Linux中软件安装,通常我们应该知道,安装软件有两种方法:一种是软件包的安装,也就是rpm包的安装,就是指这些软件包都是 已经编译好的二进制rpm包,我们通过rpm安装工具和yum安装工具就可以直接安装了.另一种则是源代码安装,这种软件安装就是指它只有源代码,没有经 过编译的二进制,需要通过手动去编译安装的. rpm包是别人所编译好的软件包,比如说编译好的rpm包没有某个功能,也我们又想用,那我们就得自去手动下载源代码来自行安装了,自定义去安装程序包,这个是我们要撑握的. 下面