Chapter 2. Installing the JBCS Apache HTTP Server on RHEL from archive files
On Red Hat Enterprise Linux (RHEL) versions 7, 8, and 9, Red Hat JBoss Core Services (JBCS) provides a distribution of the Apache HTTP Server that you can install from archive files. You can download and extract the archive files from the Software Downloads page on the Red Hat Customer Portal. You must install the base archive file for the original 2.4.51 release. You can also install the latest service pack release, if any.
When you install the Apache HTTP Server from an archive file, you can manage the product in different ways. For example, you can use a system daemon at system startup or manage the Apache HTTP Server from a command line.
From the 2.4.51 Service Pack 2 release onward, JBCS supports installation of the Apache HTTP Server from archive files on RHEL 9. For JBCS Apache HTTP Server installations on RHEL 9, the supported Apache HTTP Server version is 2.4.53.
2.1. Downloading and extracting the Apache HTTP Server archive file on RHEL
You can download the Apache HTTP Server archive files from the Software Downloads page on the Red Hat Customer portal. Depending on the Red Hat Enterprise Linux (RHEL) version that you are using, the steps to download the archive files are slightly different.
If you have write access to the intended installation directory, you can install the archive file with non-root privileges.
Prerequisites
You have installed the
elinks,krb5-workstation, andmailcappackages.If you want to install these packages, enter the following command as the root user:
# yum install elinks krb5-workstation mailcap
Procedure
- Open a browser and log in to the Software Downloads page on the Red Hat Customer Portal.
- From the Product drop-down menu, select Apache HTTP Server.
- From the Version drop-down menu, select the correct JBCS version.
Depending on the RHEL version that you are using, perform one of the following steps:
-
If you are using RHEL 7, on the Releases tab, click Download next to the
Red Hat JBoss Core Services Apache HTTP Server 2.4.51 for RHEL 7 x86_64file. -
If you are using RHEL 8, on the Releases tab, click Download next to the
Red Hat JBoss Core Services Apache HTTP Server 2.4.51 for RHEL 8 x86_64file. If you are using RHEL 9, click the Security Advisories tab. Then click Download next to the
Red Hat JBoss Core Services Apache HTTP Server 2.4.51 Patch 02 for RHEL 9 x86_64file.NoteThe
Red Hat JBoss Core Services Apache HTTP Server 2.4.51 Patch 02 for RHEL 9 x86_64file is the base archive file for installing the JBCS Apache HTTP Server on RHEL 9.Despite the
2.4.51naming convention, the JBCS archive file for RHEL 9 provides a distribution of Apache HTTP Server 2.4.53.
-
If you are using RHEL 7, on the Releases tab, click Download next to the
Extract the downloaded archive file to your installation directory.
NoteOn RHEL systems, install the Apache HTTP Server in the
/opt/directory.The extraction of the archive file automatically creates the top-level
jbcs-httpd24-2.4/httpddirectory for the Apache HTTP Server. This document refers to thejbcs-httpd24-2.4/httpddirectory asHTTPD_HOME.To install the latest service pack release, if any, perform the following steps:
- On the Software Downloads page, click the Security Advisories tab.
On the Security Advisories tab, click Download next to the latest
Red Hat JBoss Core Services Apache HTTP Server 2.4.51 Patcharchive file that matches the platform and architecture for your system.For example, if you want to install the Service Pack X release of the Apache HTTP Server 2.4.51 on RHEL 8, click Download next to the
Red Hat JBoss Core Services Apache HTTP Server 2.4.51 Patch X for RHEL 8 x86_64file.NoteService pack releases are cumulative. By downloading the latest service pack release, you also install any previous service pack releases automatically.
2.2. Apache HTTP Server configuration for managing archive installations from the command line
When you install the JBCS Apache HTTP Server from an archive file on RHEL, you can start and stop the Apache HTTP Server directly from the command line. Before you can run the Apache HTTP Server from the command line, you must perform the following series of configuration tasks:
2.2.1. Creating an Apache user
Before you run the Apache HTTP Server from the command line for the first time, you must create the apache user account and group. You must also assign ownership of the Apache directories to the apache user, so that the user can run the Apache HTTP Server.
You must perform all steps in this procedure as the root user.
Prerequisites
Procedure
-
On a command line, go to the
HTTPD_HOMEdirectory. To create the
apacheuser group, enter the following command:# groupadd -g 48 -r apache
To create the
apacheuser in theapacheuser group, enter the following command:# /usr/sbin/useradd -c "Apache" -u 48 -g apache -s /sbin/nologin -r apache
To assign ownership of the Apache directories to the
apacheuser, enter the following command:# chown -R apache:apache *
Verification
To verify that the
apacheuser is the owner of the directory, enter the following command:# ls -l
2.2.2. Disabling or enabling SSL support
Before you run the Apache HTTP Server, you can choose to disable or enable SSL support by renaming the SSL configuration file. The Apache HTTP Server supports SSL by default.
Procedure
-
Go to the
HTTPD_HOME/conf.d/directory. To enable or disable SSL, perform either of the following steps:
-
If you want to disable SSL, rename
ssl.conftossl.conf.disabled. -
If you want to re-enable SSL, rename
ssl.conf.disabledtossl.conf.
-
If you want to disable SSL, rename
2.2.3. Running the Apache HTTP Server post-installation script
Before you run the Apache HTTP Server from the command line for the first time, you must run the Apache HTTP Server post-installation script.
Procedure
-
On a command line, go to the
HTTPD_HOMEdirectory. Enter the following command:
./.postinstall
2.3. Starting the Apache HTTP Server from the command line when installed from an archive file
When you install the JBCS Apache HTTP Server from an archive file on RHEL, you can start the Apache HTTP Server directly from the command line.
Prerequisites
-
You have created an
apacheuser. - You have disabled or re-enabled SSL support.
- You have run the Apache HTTP Server post-installation script.
Procedure
-
On a command line, go to the
HTTPD_HOME/sbin/directory. Enter the following command as the root user:
./apachectl start
2.4. Stopping the Apache HTTP Server from the command line when installed from an archive file
When you install the JBCS Apache HTTP Server from an archive file on RHEL, you can stop a running instance of the Apache HTTP Server directly from the command line.
Prerequisites
- You have started the Apache HTTP Server.
Procedure
-
On a command line, go to the
HTTPD_HOME/sbin/directory. Enter the following command as the root user:
./apachectl stop
2.5. Running the Apache HTTP Server from the command line without root privileges
When you install the JBCS Apache HTTP Server from an archive file on RHEL, you can start the Apache HTTP Server from the command line as a user without root privileges. In this situation, you can use a non-root user account, such as the apache user.
Procedure
Stop all instances of the Apache HTTP Server :
pkill httpd
In the
HTTPD_HOME/conf/httpd.conffile, set thehttplisten port to higher than 1024:Listen 2080 ServerName <hostname>:2080In the
HTTPD_HOME/conf.d/ssl.conffile, set thehttpslisten port to higher than 1024:Listen 2443
Change the ownership of the
logsdirectory:chown -R apache:apache HTTPD_HOME/logs/Change the ownership of the
rundirectory:chown -R apache:apache HTTPD_HOME/var/run/Verify that
httpdis running under theapacheuser only rather than therootandapacheusers:$ ps -eo euser,egroup,comm | grep httpd
This command produces the following type of output:
apache apache httpd apache apache httpd apache apache httpd ...
ImportantLimit the file permissions of the
apacheuser and enable SELinux . This helps to prevent the following scenarios:
- Unauthorized access or modification of files and directories by website users
- Unwanted changes to the Apache HTTP Server configuration files
2.6. Managing Apache HTTP Server by using systemd when installed from an archive file
When you install the JBCS Apache HTTP Server from an archive file on RHEL, you can use a system daemon to perform management tasks. Using the Apache HTTP Server with a system daemon provides a way to start the Apache HTTP Server services at system startup. The system daemon also provides start, stop and status check functions.
On RHEL versions 7, 8, and 9, the default system daemon is systemd.
RHEL 6 is no longer supported and subsequently was removed from the documentation.
Prerequisites
- You have installed the Apache HTTP Server from an archive file.
Procedure
To determine which system daemon is running, enter the following command:
$ ps -p 1 -o comm=If
systemdis running, the following output is displayed:systemd
To set up the Apache HTTP Server for
systemd, run the.postinstall.systemdscript as the root user:# cd HTTPD_HOME # sh httpd/.postinstall.systemdTo control the Apache HTTP Server by using
systemd, enter any of the following commands as the root user:To enable the Apache HTTP Server services to start at system startup:
# systemctl enable jbcs-httpd24-httpd.service
To start the Apache HTTP Server:
# systemctl start jbcs-httpd24-httpd.service
To stop the Apache HTTP Server:
# systemctl stop jbcs-httpd24-httpd.service
To verify the status of the Apache HTTP Server:
# systemctl status jbcs-httpd24-httpd.service
NoteAny user can run the
systemctl statuscommand.
To revert any changes that the .postinstall.systemd script affects, you can enter the following command:
# cd HTTPD_HOME
# sh httpd/.postinstall.services.cleanup
For more information about using systemd, see the Additional resources links.
2.7. SELinux policies for the Apache HTTP Server
You can use Security-Enhanced Linux (SELinux) policies to define access controls for the Apache HTTP Server. These policies are a set of rules that determine access rights to the product.
2.7.1. SELinux policy information
The SELinux security model is enforced by the kernel and ensures that applications have limited access to resources such as file system locations and ports. SELinux policies ensure that any errant processes that are compromised or poorly configured are restricted or prevented from running.
The jbcs-httpd24-httpd-selinux packages in your Apache HTTP Server installation provide a mod_proxy_cluster policy. The following table contains information about the supplied SELinux policy.
Table 2.1. RPMs and Default SELinux Policies
| Name | Port Information | Policy Information |
|---|---|---|
|
|
Two ports ( |
A post-installation script configures the context mapping for |
Additional resources
- RHEL 7: SELinux User’s and Administrator’s Guide
- RHEL 8: Using SELinux
- RHEL 9: Using SELinux
2.7.2. Installing SELinux policies for an Apache HTTP Server archive installation
In this release, the archive packages provide SELinux policies. The root Apache HTTP Server folder includes a .postinstall.selinux file. If required, you can run the .postinstall.selinux script.
By default, the SELinux policy that the Apache HTTP Server provides is not active and the Apache HTTP Server processes run in the unconfined_t domain. This domain does not confine the processes. If you choose not to enable the SELinux policy that is provided, restrict file access for the apache user, so that the apache user only has access to the files and directories that are necessary for the Apache HTTP Server runtime.
Procedure
Install the
selinux-policy-develpackage:yum install -y selinux-policy-devel
Run the
.postinstall.selinuxscript:cd <httpd_home> sh .postinstall.selinuxMake and install the SELinux module:
cd <httpd_home>/selinux/ make -f /usr/share/selinux/devel/Makefile semodule -i jbcs-httpd24-httpd.ppApply the SELinux contexts for the Apache HTTP Server:
restorecon -r <httpd_home>Add access permissions to the required ports for the Apache HTTP Server:
semanage port -a -t http_port_t -p tcp 6666 semanage port -a -t http_port_t -p udp 23364
Start the Apache HTTP Server service:
<httpd_home>/sbin/apachectl startCheck the context of the running process expecting
httpd_t:$ ps -eZ | grep httpd | head -n1 unconfined_u:unconfined_r:httpd_t:s0-s0:c0.c1023 2864 ? 00:00:00 httpd
Verify the contexts of the httpd directories. For example:
ls -lZ <httpd_home>/logs/