Skip to main content
Redhat Developers  Logo
  • Products

    Featured

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat OpenShift AI
      Red Hat OpenShift AI
    • Red Hat Enterprise Linux AI
      Linux icon inside of a brain
    • Image mode for Red Hat Enterprise Linux
      RHEL image mode
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • Red Hat Developer Hub
      Developer Hub
    • View All Red Hat Products
    • Linux

      • Red Hat Enterprise Linux
      • Image mode for Red Hat Enterprise Linux
      • Red Hat Universal Base Images (UBI)
    • Java runtimes & frameworks

      • JBoss Enterprise Application Platform
      • Red Hat build of OpenJDK
    • Kubernetes

      • Red Hat OpenShift
      • Microsoft Azure Red Hat OpenShift
      • Red Hat OpenShift Virtualization
      • Red Hat OpenShift Lightspeed
    • Integration & App Connectivity

      • Red Hat Build of Apache Camel
      • Red Hat Service Interconnect
      • Red Hat Connectivity Link
    • AI/ML

      • Red Hat OpenShift AI
      • Red Hat Enterprise Linux AI
    • Automation

      • Red Hat Ansible Automation Platform
      • Red Hat Ansible Lightspeed
    • Developer tools

      • Red Hat Trusted Software Supply Chain
      • Podman Desktop
      • Red Hat OpenShift Dev Spaces
    • Developer Sandbox

      Developer Sandbox
      Try Red Hat products and technologies without setup or configuration fees for 30 days with this shared Openshift and Kubernetes cluster.
    • Try at no cost
  • Technologies

    Featured

    • AI/ML
      AI/ML Icon
    • Linux
      Linux Icon
    • Kubernetes
      Cloud icon
    • Automation
      Automation Icon showing arrows moving in a circle around a gear
    • View All Technologies
    • Programming Languages & Frameworks

      • Java
      • Python
      • JavaScript
    • System Design & Architecture

      • Red Hat architecture and design patterns
      • Microservices
      • Event-Driven Architecture
      • Databases
    • Developer Productivity

      • Developer productivity
      • Developer Tools
      • GitOps
    • Secure Development & Architectures

      • Security
      • Secure coding
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
      • View All Technologies
    • Start exploring in the Developer Sandbox for free

      sandbox graphic
      Try Red Hat's products and technologies without setup or configuration.
    • Try at no cost
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud icon
    • Java
      Java icon
    • AI/ML
      AI/ML Icon
    • View All Learning Resources

    E-Books

    • GitOps Cookbook
    • Podman in Action
    • Kubernetes Operators
    • The Path to GitOps
    • View All E-books

    Cheat Sheets

    • Linux Commands
    • Bash Commands
    • Git
    • systemd Commands
    • View All Cheat Sheets

    Documentation

    • API Catalog
    • Product Documentation
    • Legacy Documentation
    • Red Hat Learning

      Learning image
      Boost your technical skills to expert-level with the help of interactive lessons offered by various Red Hat Learning programs.
    • Explore Red Hat Learning
  • Developer Sandbox

    Developer Sandbox

    • Access Red Hat’s products and technologies without setup or configuration, and start developing quicker than ever before with our new, no-cost sandbox environments.
    • Explore Developer Sandbox

    Featured Developer Sandbox activities

    • Get started with your Developer Sandbox
    • OpenShift virtualization and application modernization using the Developer Sandbox
    • Explore all Developer Sandbox activities

    Ready to start developing apps?

    • Try at no cost
  • Blog
  • Events
  • Videos

Using Apache httpd 2.4 on Red Hat Enterprise Linux 6

October 1, 2014
Joe Orton
Related topics:
Linux
Related products:
Red Hat Enterprise Linux

Share:

    For a long time one of the most frequent requests from users of Apache httpd on Red Hat Enterprise Linux 6 has been "Why aren't you shipping Apache 2.4 yet?". Well, the good news is: we are! There are actually two ways for Red Hat Enterprise Linux users to get httpd 2.4. The first is to upgrade to RHEL 7, which comes with httpd 2.4.6 natively.

    The second is to use Red Hat Software Collections on RHEL 6, and that's what I'm going to talk about in this blog post. First up, how to get the bits?

    Enable the RHSCL Repository

    Most RHEL subscriptions will allow you to Red Hat Software Collections repositories. If not, contact Customer Service! I used a fresh RHEL 6 Server virtual machine to demonstrate this:

    [root@virt-el6scratch ~]# yum repolist all | grep rhscl
    This system is receiving updates from Red Hat Subscription Management.
    rhel-server-rhscl-6-beta-debug-rpms                   Red Hat So disabled
    ...
    rhel-server-rhscl-6-rpms                              Red Hat So disabled
    rhel-server-rhscl-6-source-rpms                       Red Hat So disabled
    

    Those are the the RHSCL channels... we only need to enable one here:

    [root@virt-el6scratch ~]# yum-config-manager --enable rhel-server-rhscl-6-rpms
    ...
    

    If that command produces a long yum configuration on your terminal, it was successful.

    Install the packages

    Here, we are going to install the httpd package from the httpd24
    software collection - RHSCL packages are named <scl>-<pkg>, so the
    command is:

    [root@virt-el6scratch ~]# yum install -y -q httpd24-httpd
    ...
    Installed:
      httpd24-httpd.x86_64 0:2.4.6-18.el6
    
    Dependency Installed:
      httpd24-apr.x86_64 0:1.4.8-3.el6         httpd24-apr-util.x86_64 0:1.5.2-7.el6       httpd24-httpd-tools.x86_64 0:2.4.6-18.el6
      httpd24-runtime.x86_64 0:1.1-4.el6
    

    That's the minimal needed for an httpd 2.4 installation. Here I've installed the httpd package, which includes many of the bundled modules. Some larger modules, or those which pull in bigger sets of dependencies are packaged separatetely. The set of httpd module packages we have in the httpd24 SCL is as follows:

    [root@virt-el6scratch ~]# yum list -C httpd24-mod_*
    This system is receiving updates from Red Hat Subscription Management.
    Available Packages
    httpd24-mod_auth_kerb.x86_64                                   5.4-29.el6                                       rhel-server-rhscl-6-rpms
    httpd24-mod_ldap.x86_64                                        2.4.6-18.el6                                     rhel-server-rhscl-6-rpms
    httpd24-mod_proxy_html.x86_64                                  1:2.4.6-18.el6                                   rhel-server-rhscl-6-rpms
    httpd24-mod_session.x86_64                                     2.4.6-18.el6                                     rhel-server-rhscl-6-rpms
    httpd24-mod_ssl.x86_64                                         1:2.4.6-18.el6                                   rhel-server-rhscl-6-rpms
    

    That includes the third-party Kerberos authentication module, mod_auth_kerb. In Red Hat Software Collections v1.1 we also have mod_wsgi, mod_perl, mod_passenger, and PHP 5.5, which can all be used with the httpd 2.4 collection.

    Init scripts in RHSCL packages are named using the same convention as above, so to start the daemon:

    [root@virt-el6scratch ~]# service httpd24-httpd start
    Starting httpd:                                            [  OK  ]
    [root@virt-el6scratch ~]# curl --silent http://localhost/ | grep 'Red Hat' | head -1
    Test Page for the Apache HTTP Server on Red Hat Enterprise Linux
    

    It works!

    One of the features of 2.4 which users have been asking for is the "event" Multi-Processing Module. In httpd there are various MPMs available which allow different processing models to be used by the server; the default, traditional process-based server is "prefork". The event MPM is a threaded model with some specific enhancements
    for handling idle connections, which was shipped experimentally in httpd 2.2 but is fully supported in 2.4.

    For anybody who has tried configuring a different MPM in httpd 2.2
    before, a different method is used in 2.4. With httpd 2.2, separate
    MPMs were shipped by compiling the "/usr/sbin/httpd" binary multiple times,
    so "/usr/sbin/httpd.worker" was a replacement httpd binary which used
    the threaded "worker" MPM.

    In 2.4, MPMs are now loadable modules. To enable the event MPM with the httpd24 software collection, edit the configuration file /opt/rh/httpd24/root/etc/httpd/conf.modules.d/00-mpm.conf, comment-out the line for the prefork module, and uncomment the line which loads the right module:

    LoadModule mpm_event_module modules/mod_mpm_event.so

    Here it is in action:

    [root@virt-el6scratch ~]# service httpd24-httpd start
    Starting httpd:                                            [  OK  ]
    [root@virt-el6scratch ~]# grep resuming /var/log/httpd24/error_log | tail -1
    [Tue Sep 23 12:12:41.319368 2014] [mpm_event:notice] [pid 31774:tid 140410273740768] AH00489: Apache/2.4.6 (Red Hat) configured -- resuming normal operations
    

    Looking carefully at that log message, the "mpm_event" prefix used shows that the event MPM has indeed being activated.  Another way to verify is to run "httpd" from the SCL:

    [root@virt-el6scratch ~]# scl enable httpd24 'httpd -V'
    Server version: Apache/2.4.6 (Red Hat)
    Server built:   Jul 18 2014 06:22:09
    Server's Module Magic Number: 20120211:23
    Server loaded:  APR 1.4.8, APR-UTIL 1.5.2
    Compiled using: APR 1.4.8, APR-UTIL 1.5.2
    Architecture:   64-bit
    Server MPM:     event
      threaded:     yes (fixed thread count)
        forked:     yes (variable process count)

    Again, this shows the threaded "event" MPM is active.

    For more information about Red Hat Software Collections or Red Hat Developer Toolset, visit https://developers.redhat.com/products/rhel/overview.

    Last updated: November 2, 2023

    Recent Posts

    • How to run a fraud detection AI model on RHEL CVMs

    • How we use software provenance at Red Hat

    • Alternatives to creating bootc images from scratch

    • How to update OpenStack Services on OpenShift

    • How to integrate vLLM inference into your macOS and iOS apps

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Products

    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform

    Build

    • Developer Sandbox
    • Developer Tools
    • Interactive Tutorials
    • API Catalog

    Quicklinks

    • Learning Resources
    • E-books
    • Cheat Sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site Status Dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Report a website issue