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

Apache httpd 2.4 on Red Hat Enterprise Linux 6

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

    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

    • Red Hat Hardened Images: Top 5 benefits for software developers

    • How EvalHub manages two-layer Kubernetes control planes

    • Tekton joins the CNCF as an incubating project

    • Federated identity across the hybrid cloud using zero trust workload identity manager

    • Confidential virtual machine storage attack scenarios

    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.