Skip to main content
Redhat Developers  Logo
  • Products

    Platforms

    • Red Hat Enterprise Linux
      Red Hat Enterprise Linux Icon
    • Red Hat AI
      Red Hat AI
    • Red Hat OpenShift
      Openshift icon
    • Red Hat Ansible Automation Platform
      Ansible icon
    • View All Red Hat Products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat Developer Hub
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat OpenShift Local
    • Red Hat 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
    • Automated Data Processing

      • AI/ML
      • Data Science
      • Apache Kafka on Kubernetes
    • Platform Engineering

      • DevOps
      • DevSecOps
      • Ansible automation for applications and services
    • Secure Development & Architectures

      • Security
      • Secure coding
  • Learn

    Featured

    • Kubernetes & Cloud Native
      Openshift icon
    • Linux
      Rhel icon
    • Automation
      Ansible cloud 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

    • Product Documentation
    • API Catalog
    • Legacy Documentation
  • 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

Apache httpd 2.4 on Red Hat Enterprise Linux 6

October 24, 2013
Joe Orton
Related topics:
Linux
Related products:
Red Hat Enterprise Linux

Share:

    An update of this article can be found here.

    My team here at Red Hat maintains the web server stack in Fedora and RHEL. One of the cool projects we've been working on recently is Software Collections. With RHEL we've always suffered from the tension between offering a stable OS platform to users, and trying to support the latest-and-greatest open source software. Software Collections is a great technology we're using to address that tension. Remi Collet has blogged about the PHP 5.4 software collection (now available in the 1.0 release of our product) over at his blog and on this developer blog. Also, another team member, Jan Kaluza, has been working on a collection of httpd 2.4 for RHEL6 - something we keep hearing requests for in bugzilla.

    To kick the wheels of Jan's collection in a RHEL 6.4 VM, here's what I did:

    # curl -s http://repos.fedorapeople.org/repos/jkaluza/httpd24/epel-httpd24.repo > /etc/yum.repos.d/epel-httpd24.repo
    # yum install httpd24-httpd
    ...
    Installed:
      httpd24-httpd.x86_64 0:2.4.6-5.el6
    
    Dependency Installed:
      httpd24-apr.x86_64 0:1.4.8-2.el6  httpd24-apr-util.x86_64 0:1.5.2-5.el6  httpd24-httpd-tools.x86_64 0:2.4.6-5.el6
      httpd24-runtime.x86_64 0:1-6.el6
    
    Complete!
    #

    This has dropped a complete installation of Apache httpd 2.4.6 into /opt/rh/httpd24 which can be used alongside the httpd 2.2.15 package supported in RHEL 6.4.

    # rpm -ql httpd24-httpd | grep sbin
    /opt/rh/httpd24/root/usr/sbin/apachectl
    /opt/rh/httpd24/root/usr/sbin/fcgistarter
    /opt/rh/httpd24/root/usr/sbin/htcacheclean
    /opt/rh/httpd24/root/usr/sbin/httpd
    /opt/rh/httpd24/root/usr/sbin/rotatelogs
    /opt/rh/httpd24/root/usr/sbin/suexec

    The httpd install is contained inside /opt/rh/httpd24 as far as possible, but we do "leak" into the normal RHEL filesystem in a couple of places - notably to offer an init script. This makes firing up the newly installed 2.4 daemon in my VM as easy as any other service:

    # service httpd24-httpd start
    Starting httpd:                                            [  OK  ]
    # curl -s http://localhost/ | grep 'Test Page for'
    		<title>Test Page for the Apache HTTP Server on Red Hat Enterprise Linux</title>
    #

    That's the httpd packagers' equivalent of getting your program to print "Hello, World" - we're successfully serving the familiar HTML "welcome page" over HTTP on port 80.

    I wanted to check whether the SELinux labelling is being applied correctly in the httpd 2.4 collection. Using some /usr/bin/semanage magic, it's actually very simple for us to automatically apply SELinux policy inside software collections using an RPM %post script. Here's one way to check whether it's working:

    # ps Zf -C httpd
    LABEL                             PID TTY      STAT   TIME COMMAND
    unconfined_u:system_r:httpd_t:s0 1772 ?        Ss     0:00 /opt/rh/httpd24/root/usr/sbin/httpd
    unconfined_u:system_r:httpd_t:s0 1774 ?        S      0:00  _ /opt/rh/httpd24/root/usr/sbin/httpd
    unconfined_u:system_r:httpd_t:s0 1775 ?        S      0:00  _ /opt/rh/httpd24/root/usr/sbin/httpd
    unconfined_u:system_r:httpd_t:s0 1776 ?        S      0:00  _ /opt/rh/httpd24/root/usr/sbin/httpd
    unconfined_u:system_r:httpd_t:s0 1777 ?        S      0:00  _ /opt/rh/httpd24/root/usr/sbin/httpd
    unconfined_u:system_r:httpd_t:s0 1778 ?        S      0:00  _ /opt/rh/httpd24/root/usr/sbin/httpd

    Success - those "httpd_t" labels which I've highlighted tell me that httpd processes are running in the correct domain.

    Finally, here's a quick demo of one httpd 2.4 feature I really love - an embedded Lua interpreter in the form of mod_lua:

    # cat > /opt/rh/httpd24/root/var/www/html/hello.lua <<EOF
    function handle(r)
        r.content_type = "text/plain"
        r:puts("Hello Lua World!n")
        return apache2.OK
    end
    EOF
    # echo 'AddHandler lua-script .lua' > /opt/rh/httpd24/root/etc/httpd/conf.d/lua.conf
    # service httpd24-httpd reload
    Reloading httpd:
    # curl -s http://localhost/hello.lua
    Hello Lua World!
    #

    If you try out this collection, let us know in the comments how you get on.

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

    EDITORS NOTE:  APACHE HTTPD IS NOW PART OF RED HAT SOFTWARE COLLECTIONS 1.1 BETA.

    Last updated: November 2, 2023

    Recent Posts

    • A deep dive into Apache Kafka's KRaft protocol

    • Staying ahead of artificial intelligence threats

    • Strengthen privacy and security with encrypted DNS in RHEL

    • How to enable Ansible Lightspeed intelligent assistant

    • Why some agentic AI developers are moving code from Python to Rust

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

    Red Hat legal and privacy links

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

    Report a website issue