Handling server processes, Servertype, Group – Oracle B12255-01 User Manual

Page 48: User, Servertype -4 group -4 user -4

Advertising
background image

Handling Server Processes

4-4

Oracle HTTP Server Administrator’s Guide

Handling Server Processes

Use the following directives to manage the server processes:

ServerType

Group

User

ServerType

Provides the following two options, both being applicable on UNIX only:

inetd

: Starts up a new child process every time a request comes in. The program

exits once the request is dealt with. This setting eliminates the option of having
several child processes in waiting, making it slower and expensive, but more secure.

standalone

: Enables several waiting child processes, and requires the server to be

started only once. It is the default and recommended setting for a busy Web site.

You must specify the

User

and

Group

under which the servers answer requests.

Group

Specifies the group under which the server answers requests. In order to use this
directive, the standalone server must be run initially as root. It is recommended that
you create a new group for running the server. This is applicable to UNIX only.

User

Specifies the user ID to which the server answers requests. Run the standalone
server as root to use this directive.You should have privileges to access files that
are available for everyone, and should not be able to execute code which is not
meant for httpd requests. It is recommended that you set up a new user for running
the server. This is applicable to UNIX only.

See Also:

“ServerType directive” in the Apache Server

documentation.

See Also:

“Group directive” in the Apache Server

documentation.

See Also:

“User directive” in the Apache Server documentation.

Advertising