Oracle® HTTP Server Administrator's Guide 10g Release 1 (10.1) Part Number B12255-01 |
|
|
View PDF |
This chapter provides information about specifying IP addresses and ports, and managing server interaction, and network connection persistence.
Topics discussed are:
Documentation from the Apache Software Foundation is referenced when applicable.
When Oracle HTTP Server is started, by default, it listens for requests on port 7777 (non-SSL). If port 7777 is occupied, Oracle HTTP Server listens on the next available port number between a range of 7777-7877. Thus, if port 7777 is busy, it would listen on port 7778, and so on.
A file named setupinfo.txt
is automatically generated in ORACLE_HOME
/Apache/Apache
on UNIX or ORACLE_HOME
\Apache\Apache
on Windows.
It contains port information for Oracle HTTP Server. This file is generated at install time, and is not updated thereafter. If you restart Oracle HTTP Server, the information in this file becomes inaccurate.
You can change the Oracle HTTP Server listener port (SSL and non-SSL) after installation. If you make a port change, then you have to also update other components to use the new port number.
See Also:
Oracle Application Server 10g Administrator's Guide for complete instruction. |
You can specify the server to listen to more than one port, selected addresses, or a combination. The following directives, located in the "Global Environment" of the httpd.conf
file, specify listener ports and addresses. Note that BindAddress
and Port
can be used only once. Apache group recommends the use of Listen
instead.
Restricts the server to listen to a single IP address. If the argument to this directive is *, then it listens to all IP addresses. This directives has been deprecated. Listen
offers similar functionality.
See Also:
" |
Specifies the port of the listener, if no Listen
or BindAddress
are present. If Listen
is present, the Port
value becomes the default port value that is used when Oracle HTTP Server builds URLs, or other references to itself. Usually, the values of Port
and Listen
should match, unless Oracle HTTP Server is fronted by a caching, or proxy server. Then, you can set Port
to be the port that is being used by the front end server, and Listen
to the port that Oracle HTTP Server is actually listening to. By doing this, redirects or other URLs generated by Oracle HTTP Server point to the front-end server rather than directly to Oracle HTTP Server.
See Also:
" |
Specifies an IP port that Oracle HTTP Server should listen on. Multiple Listen
directives can be used to listen on multiple ports. If present, this value will override the value of Port
. Accordingly, if you have a Port
value of 7777 and a Listen
value of 7778, then Oracle HTTP Server only listens on one port, 7778.
See Also:
" |
The following directives are used to specify how the server interacts with the network. They are located in the "Global Environment" of the httpd.conf
file.
Specifies the maximum length of the queue of pending connections. This is useful if the server is experiencing a TCP
SYN
overload, which causes numerous new connections that open up but do not complete the task.
See Also:
" |
Increases the TCP
buffer size to the number of bytes specified, thereby improving performance.
See Also:
" |
Sets the maximum time, in seconds, that the server waits for the following:
GET
request.TCP
packets on a POST
or PUT
request.ACKs
on transmissions of TCP
packets in responses.The default is set at 300 seconds.
See Also:
" |
The following directives determine how the server handles persistent connections. They are located in the "Global Environment" of the httpd.conf
file.
Enables a single connection to accept multiple requests from the same client. The default is set to "On".
See Also:
" |
Sets the number of seconds the server waits for a subsequent request before closing a KeepAlive
connection. Once a request has been received, the timeout value specified by the TimeOut
directive applies. The default is set at 15 seconds.
See Also:
" |
Limits the number of requests allowed for each connection when KeepAlive
is on. If it is set to "0", unlimited requests will be allowed. The default is set at 100.
See Also:
" |
By default, Oracle Database installs using the local hostname as set up by ServerName
directive in Oracle HTTP Server. Most Web sites tend to have a specific hostname or domain name for their Web server. However, this is not possible out of the box because with the ServerName
directive, Oracle HTTP Server is instantiated with the local host.
Domain Name: www.oracle.com:80 123.456.7.8 (hosted on a reverse proxy, load balancer, or firewall)
Host Name of Oracle Database Host: server.oracle.com 123.456.7.9
ServerName and Port of Oracle Database Host: server.oracle.com:7777
Make the following changes in the httpd.conf
file:
Port 80 Listen 7777 Listen 80 # Virtual Hosts # This section is mandatory for URLs that are generated by # the PL/SQL packages of the Oracle Portal and various other components # These entries dictate that the server should listen on port # 7777, but will assert that it is using port 80, so that # self-referential URLs generated specify www.oracle.com:80 # This will create URLs that are valid for the browser since # the browser does not directly see the host server.oracle.com. NameVirtualHost 123.456.7.9:7777 <VirtualHost server.oracle.com:7777> ServerName www.oracle.com Port 80 </VirtualHost> # Since the previous virtual host entry will cause all links # generated by the Oracle Portal to use port 80, the server.company.com # server needs to listen on 80 as well since the Parallel Page # Engine will make connection requests to Port 80 to request the # portlets. NameVirtualHost 123.456.7.9:80 <VirtualHost server.oracle.com:80> ServerName www.oracle.com Port 80 <VirtualHost>
See Also: "Running Oracle HTTP Server as Root" for instructions on running Oracle HTTP Server with ports lesser than 1024. |