UNIX: Extending the List of LoadModule Entries 

Use

You must enter a new module (the FastCGI(SAP DB) module) in the list of Apache modules.

Prerequisites

Modifying the Apache Module List

Conventions

Variables, Operating System Architecture

Procedure

Open the Apache configuration file <installation_path_apache>/conf/httpd.conf . Insert the required lines in the configuration file.

A green backslash ( \ ) in a line means: continuation. Do not begin a new line.
You do not need to add this green backslash.

 

# Example:
# LoadModule foo_module libexec/mod_foo.so
LoadModule cgi_module libexec/mod_cgi.so

.
.
.

LoadModule fastcgi_module <installation_path_web_tools>/lib/mod_fastcgi.so

AddHandler fastcgi-script fcgi

FastCgiServer htdocs/wafcgi.fcgi -initial \
-env LD_LIBRARY_PATH= <installation_path_web_tools>/lib
\
-num_sessions 1 -session_tracking cookies

.
.
.

For the HP-UX operating system, the first of these three lines must be:

LoadModule fastcgi_module <installation_path_web_tools>/lib \
/mod_fastcgi.sl

Next Installation Step

Entering the FastCGI(SAP DB) Module in the List of Apache Modules to be Loaded

Integration

Modifying the Apache Module List