Saturday, June 18, 2011

Webcache and Apache listen ports change to port 80 and use it alone with another port

Visit the Below Website to access unlimited exam questions for all IT vendors and Get Oracle Certifications for FREE
http://www.free-online-exams.com
Problem Description: How to Change to Apache listen port to 80
Solution:

1 - Stop the HTTP Server

2 - Confirm that the port 80 is NOT in use , by [ netstat -an | findstr "80" ]   and check in output the port 80 is not used. [Disable oracle web cache if it is using port 80 and if you are using Oracle Forms]

3 - Edit httpd.conf and change listen port to 80 as follows:

   Port 80
   Listen 80

4 - Edit httpd.conf as below if you want to use more than one port, like 80 and 7778
 
   Port 7778
   Port 80
   Listen 7778
   Listen 80


5 - run >dcmctl updateconfig 

6 - Start the HTTP Server and test the homepage with port 80 and 7778

Reference:

Oracle® Application Server Administrator's Guide 10g Release 2 (10.1.2)  B13995-08
4.3.3 Changing the Oracle HTTP Server Listen Ports
http://download.oracle.com/docs/cd/B14099_19/core.1012/b13995/ports.htm



     
Get Oracle Certifications for all Exams
Free Online Exams.com

No comments: