编译安装httpd-2.4.9及配置其相关的工作方式



写在前面:如果此文有幸被某位朋友看见并发现有错的地方,希望批评指正。如有不明白的地方,愿可一起探讨。



解决依赖关系



httpd-2.4.9依赖于较新版本的apr和apr-util,接下来就编译安装apr和apr-util

1、编译安装apr

# tar xf apr-1.5.0.tar.bz2
# cd apr-1.5.0
# ./configure --prefix=/usr/local/apr
# make && make install

2、编译安装apr-util

# 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-2.4.9



httpd-2.4.9编译过程中还需依赖于pcre-devel软件包,因此也需将其安装才行

提示:挂载光盘,切换到光盘下的Package目录执行

# rpm -ivh pcre-devel-7.8-6.el6.x86_64.rpm

1、编译安装httpd-2.4.9

# tar xf httpd-2.4.9.tar.bz2
# cd httpd-2.4.9
# ./configure --prefix=/usr/local/httpd24 --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

2、编译/etc/httpd24/httpd.conf配置文件,添加如下行即可:

PidFile "/var/run/httpd.conf"

PidFile用于指定记录httpd进程号(PID)的文件位置

3、提供SysV服务脚本/etc/rc.d/init.d/httpd24

# vim /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/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/httpd24/bin/apachectl
httpd=${HTTPD-/usr/local/httpd24/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

赋予脚本执行权限

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

将http24加入服务列表

# chkconfig --add httpd24
# chkconfig httpd24 on

4、启动http24服务并测试

# /etc/rc.d/init.d/httpd24 start

在浏览器中键入编译安装httpd-2.4.9的主机IP地址,如:10.170.2.1

此处需要说明的是,当你编译安装完httpd-2.4.9后,其DocumentRoot的默认路径为/usr/local/httpd24/htdocs,在此目录下,有一个index.html文件,更多详细内容请查看/etc/httpd24/httpd.conf配置文件

配置虚拟主机



在正式配置虚拟主机之前,需要进行说明的是:以前的httpd版本,配置虚拟主机、配置基于用户的访问控制以及配置httpd工作于https方式等只在主配置文件httpd.conf中,而编译安装的httpd-2.4.9将这些功能的配置分离出来形成了新的配置文件并利用Include包含的主配置文件中

1、编辑/etc/httpd24/httpd.conf配置文件,启动下面这项内容

Include /etc/httpd24/extra/httpd-vhosts.conf

2、编辑/etc/httpd24/extra/httpd-vhosts.conf文件

# cd /etc/httpd24/extra/
# vim httpd-vhosts.conf

将文件中的两个VirtualHost的所用内容注释掉,然后编辑如下内容

<VirtualHost *:80>
    DocumentRoot "/web/hosta"
    ServerName www.muluhe.org
    <Directory "/web/hosta">
        Require all granted
    </Directory>
</VirtualHost>

<VirtualHost *:80>
    DocumentRoot "/web/hostb"
    ServerName mail.muluhe.com
    <Directory "/web/hostb">
        Require all granted
    </Directory>
</VirtualHost>

3、编辑网页文件

# mkdir -pv /web/hosta
# mkdir -pv /web/hostb
# vim /web/hosta/index.html
    内容为:<h1>Hello,www.muluhe.org</h1>
# vim /web/hostb/index.html
    内容为:<h1>Hello,mail.muluhe.com</h1>

4、重启http24服务并测试

# /etc/rc.d/init.d/httpd24 restart

由于没有安装DNS服务器,因此利用本地文件对虚拟主机名进行解析

打开Windows主机上的C:\Windows\System32\drivers\etc\hosts文件,并添加对应IP地址与虚拟主机名,添加的内容为:

10.170.2.1 www.muluhe.com
10.170.2.1 mail.muluhe.com
10.170.2.1 www.muluhe.org

在浏览器中分别键入www.muluhe.com、www.muluhe.org、mai.muluhe.com,得到如下结果:

配置基于用户访问控制



1、编译配置文件/etc/httpd24/httpd.conf,启动下面的选项

Include /etc/httpd24/extra/httpd-userdir.conf

关闭下面的选项

Include /etc/httpd24/extra/httpd-vhosts.conf

2、编辑配置文件/etc/httpd24/extra/httpd-userdir.conf

# cd /etc/httpd24/extra/
# vim httpd-userdir.con

将文件中相对应的内容修改为:

UserDir "/usr/local/httpd24/htdocs/admin"
<Directory "/usr/local/httpd24/htdocs/admin">
    AllowOverride AuthConfig
    Options none
    AuthType Basic
    AuthName "Admin Area."
    AuthUserFile /etc/httpd24/.htpasswd
    Require valid-user
</Directory>

3、提供相关文件

# cd /usr/local/httpd24/htdocs/
# mkdir admin
# vim index.html
    内容为:<h1>Hello,muluhe,Welcome to admin directory</h1>
# htpasswd -c -m /etc/httpd24/.htpasswd muluhe
New password: 
Re-type new password: 
Adding password for user muluhe

4、重启httpd24服务并测试

# /etc/init.d/httpd24 restart
Stopping httpd:                                            [  OK  ]
Starting httpd: AH00526: Syntax error on line 10 of /etc/httpd24/extra/httpd-userdir.conf:
Invalid command ‘UserDir‘, perhaps misspelled or defined by a module not included in the server configuration
                                                           [FAILED]

呀哈,竟然出现错误,其大概的意思是说没有加载支持‘UserDir‘命令的模块,查看/etc/httpd24/extra/httpd-userdir.conf可以找到以下内容:

# Required module: mod_authz_core, mod_authz_host, mod_userdir

与配置文件/etc/httpd24/httpd.conf中的LoadModule中启动的模块作对比,发现没有启动LoadModule userdir_module modules/mod_userdir.so这个模块,将其启动起来再重启服务

# /etc/init.d/httpd24 restart
Stopping httpd:                                            [FAILED]
Starting httpd:                                            [  OK  ]

在浏览器中键入www.muluhe.com/admin,可以得到如下结果

输入用户名和密码可以得到如下结果

配置httpd24工作于https



1、安装mod_ssl模块并查看

# yum -y install mod_ssl
# rpm -ql mod_ssl

2、为服务器端生成私钥,并为其提供证书

建立CA

# cd /etc/pki/CA
# (umask 077; openssl genrsa -out private/cakey.pem 2048)
# openssl req -new -x509 -key private/cakey.pem -out cacert.pem -days 3650
# touch serial index.txt
# echo 01 > serial

生成证书请求

# mkdir /etc/httpd/ssl
# cd /etc/httpd/ssl
# (umask 077; openssl genrsa -out httpd.key 1024)
# openssl req -new -key httpd.key -out httpd.csr

签署证书

# openssl ca -in httpd.csr -out httpd.crt -days 1000

3、编辑配置文件/etc/httpd24/httpd.conf,启动下面的选项

Include /etc/httpd24/extra/httpd-ssl.conf
LoadModule socache_shmcb_module modules/mod_socache_shmcb.so
LoadModule ssl_module modules/mod_ssl.so

4、编辑配置文件/etc/httpd24/extra/httpd-ssl.conf,修改下面的选项

DocumentRoot "/usr/local/httpd24/htdocs/ssl"
ServerName www.muluhe.com
SSLCertificateFile "/etc/httpd24/ssl/httpd.crt"
SSLCertificateKeyFile "/etc/httpd24/ssl/httpd.key"

5、安装证书

复制/etc/pki/CA/cacert.pem文件到Windows桌面并重命名为cacert.crt,其具体的安装步骤为:

双击桌面上"cacert.crt"-->点击安装"安装证书(I)..."-->点击"下一步"-->选择"将所有的证书放入下列存储(P)"-->点击"浏览(R)..."-->点击"下一步"-->点击"完成"-->在新的窗口中点击"yes"-->在新的窗口点击"确定"

6、编辑网页文件

# mkdir /usr/local/httpd24/htdocs/ssl
# cd /usr/local/httpd24/htdocs/ssl
# vim index.html
    其内容为:<h1>Hello,SSL, I‘m here!</h1>

7、重启httpd24服务并测试

# /etc/rc.d/init.d/httpd24 restart

在浏览器中键入www.muluhe.com,可以得到如下结果

在浏览器中键入https://www.muluhe.com,可以得到如下结果

时间: 2024-11-04 23:32:56

编译安装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 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的端口的只有管理员

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

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

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

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