Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

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

    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

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    • Preventing GPU waste: A guide to JIT checkpointing with Kubeflow Trainer on OpenShift AI

    • How to manage TLS certificates used by OpenShift GitOps operator

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    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
    © 2026 Red Hat

    Red Hat legal and privacy links

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

    Chat Support

    Please log in with your Red Hat account to access chat support.