- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Testing http
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 10:24 PM
02-28-2006 10:24 PM
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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 10:34 PM
02-28-2006 10:34 PM
Solution1. 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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 10:47 PM
02-28-2006 10:47 PM
Re: Testing http
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..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 10:54 PM
02-28-2006 10:54 PM
Re: Testing http
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2006 11:44 PM
02-28-2006 11:44 PM
Re: Testing http
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
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2006 02:47 AM
03-01-2006 02:47 AM
Re: Testing http
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2006 02:50 AM
03-01-2006 02:50 AM
Re: Testing http
netstat -an |grep 7778
Rgds...Geoff