skip to Main Content

I am currently setting up a JBoss EAP 7 cluster in domain mode and the goal is for an apache webserver to be installed as a load balancer. However, I am unable to install the httpd service from yum repositories as this is a VM that was provisioned by a client. I need to install httpd from its source which I have downloaded. My problem is that I am not sure about the configuration options to enable for this purpose. Any help would be appreciated. From the official website, the instruction doesn’t give details about what modules to be enabled and I’m not sure which of them are relevant for my own purpose.

Download    Download the latest release from http://httpd.apache.org/download.cgi
Extract     $ gzip -d httpd-NN.tar.gz
$ tar xvf httpd-NN.tar
$ cd httpd-NN
Configure   $ ./configure --prefix=PREFIX
Compile     $ make
Install     $ make install
Customize   $ vi PREFIX/conf/httpd.conf
Test    $ PREFIX/bin/apachectl -k start

2

Answers


  1. Chosen as BEST ANSWER

    I was able to do my installation by following the guide here


  2. Above provided link will contain all module which provided with default Apache httpd. You can download the Apache httpd source folder and check module information in modules.In Apache source module/proxy folder contains module information regarding the proxy configuration. i.e mod_proxy module.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search