1834916 Members
2789 Online
110071 Solutions
New Discussion

Testing http

 
SOLVED
Go to solution
so_2
Regular Advisor

Testing http

Hi

This is regarding a problem as described below.
I am having a server in which an application called Finfore is running.The application uses oracle http server(apache).The client usually open the application in a browser http:/edcdbs11.7778/.But it is not working now. Could you please help me in the steps to be followed in resolving this problem. How do i test that it will work as i cannot use the browser here.
Thanks in advance
s.o
6 REPLIES 6
Peter Godron
Honored Contributor
Solution

Re: Testing http

Hi,
1. check http is running
ps -ef | grep http
2. If not running start the apache server
.../Apache/bin/apachectl start
3. If running check the port:
grep 7778 .../Apache/conf/httpd.conf

These locations/files assume no modifications were made.

Let us know how you get on.
so_2
Regular Advisor

Re: Testing http

Thanks Peter

These are the findings against your reply
ps -ef | grep http
root 3330 1 0 Feb 1 ? 2:37 /opt/apache/bin/httpd
orafrp 3346 3330 0 Feb 1 ? 0:01 /opt/apache/bin/httpd
orafrp 6309 3330 0 Feb 8 ? 0:02 /opt/apache/bin/httpd
orafrp 3347 3330 0 Feb 1 ? 0:01 /opt/apache/bin/httpd
orafrp 3348 3330 0 Feb 1 ? 0:01 /opt/apache/bin/httpd
orafrp 3349 3330 0 Feb 1 ? 0:00 /opt/apache/bin/httpd
orafrp 3350 3330 0 Feb 1 ? 0:01 /opt/apache/bin/httpd
orafrp 17772 3330 0 Feb 23 ? 0:00 /opt/apache/bin/httpd
in867566 12809 8225 0 11:41:26 pts/1 0:00 grep http
orafrp 29721 3330 0 Feb 16 ? 0:01 /opt/apache/bin/httpd
orafrp 20337 3330 0 Feb 16 ? 0:01 /opt/apache/bin/httpd
orafrp 6308 3330 0 Feb 8 ? 0:01 /opt/apache/bin/httpd
$
$ grep 7778 httpd.conf
$

more /opt/apache/conf/httpd.conf
----------
--------
Listen 8765
Listen 80
Listen 8081
#Listen 12.34.56.78:80
-----------
----------

Pls advice..
Peter Godron
Honored Contributor

Re: Testing http

Hi,
can you please ask the users to test access to:
http://edcdbs11:8765/
http://edcdbs11:8081/
http://edcdbs11:80/

I also assume all your oracle processes were started and the database is up and running.

Arunvijai_4
Honored Contributor

Re: Testing http

Hello,

What kind of error message you are getting ? Page not found or some other like 505 ?

If you can't use any browser, you can simply telnet to that particular port(8765)

# telnet 8765 will help you.

-Arun
"A ship in the harbor is safe, but that is not what ships are built for"
AshishJain_USA
Frequent Advisor

Re: Testing http

Hi

On the server side, use the following commands

# lsof | grep 8765
# lsof | grep 8081
# lsof | grep 80

The output of all the above 3 commands should show that the ports are in LISTEN state.'

If this is thtough, pls use the following commands from any end-user terminal

telnet Server_IP 8765 ( and similarly replace the port no. with 8081 & 80 )

The above three commands should throw up a BLANK Window. However, if there are any Network/Firewall issues crom Terminal to server, it will show "connecting to ..."

rgds..Ashish
Geoff Wild
Honored Contributor

Re: Testing http

You can all try a

netstat -an |grep 7778


Rgds...Geoff
Proverbs 3:5,6 Trust in the Lord with all your heart and lean not on your own understanding; in all your ways acknowledge him, and he will make all your paths straight.