The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
lpr- how to print from page to page naamas03 Shell Programming and Scripting 4 12-26-2007 06:30 AM
finding duplicate files by size and finding pattern matching and its count jerome Sukumar Shell Programming and Scripting 2 12-01-2006 04:20 AM
finding information about a server legato UNIX for Dummies Questions & Answers 3 02-03-2005 11:05 AM
Finding server Model on HPUX lnineill HP-UX 4 01-06-2005 02:37 PM
Finding an x25 address for a server peter.herlihy IP Networking 1 11-30-2001 10:18 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 01-04-2007
Krrishv Krrishv is offline
Registered User
  
 

Join Date: Dec 2006
Location: CA,United States
Posts: 186
finding the web page on server

Wish you all a very happy new year.

I have a web url "http://marabou.mis.amat.com/cgi-bin/iman?IMAN_server_report=full"

where marabou.mis.amat.com is my server name. the page content is below.

*********************************************************
TcEng Web server report
Thu Jan 4 01:27:50 2007 - I am alive and well (pid 712), up since Sat Dec 16 22:26:32 2006

click here to login to this server

click here for a shortened report

click here for an xml report

Completed 13905 out of 13916 queries; average runtime 1.626 secs (1 timeouts).


--------------------------------------------------------------------------------

Preferences
Port number: 8181
Select time: 18000
Heartbeat time: 1000
Query time limit: 18000
Maximum number of queries: 750
Minimum number of free processes: 1
Maximum number of processes: 500
Soft login timeout: 120
Hard login timeout: 36000
Process lifespan (in queries): 10000
Maximum login processes per user: 1
Maximum retries on blocked sockets (Windows only): 5
Maximum concurrent logins 500
Maximum CPU usage 80
CPU usage monitoring 0
CPU usage check interval 10
Maximum no of requests/user in queue 5
Maximum length of the queue of pending connections 128
Number of active file descriptors: 1760
Monitoring switch: 1
Internal buffer size: 16384
IMANScript program: /Application/ugs/tceng/tceng0912/web/bin/imanscript
IMAN Document Root: /Application/ugs/tceng/tceng0912/web/htdocs
IMAN Environment:



--------------------------------------------------------------------------------

Processes
No. State Query Times User Processed Syslog
1 ready idle 108s 1 /Application/ugsvols/bldata01/logs/imanscript9519.syslog
2 ready idle 2538s 106641 5 /Application/ugsvols/bldata01/logs/imanscript149.syslog
3 ready idle 4843s 1 /Application/ugsvols/bldata01/logs/imanscript20773.syslog
4 ready idle 5594s X035077 6 /Application/ugsvols/bldata01/logs/imanscript4440.syslog
5 ready idle 545s X038493 105 /Application/ugsvols/bldata01/logs/imanscript802.syslog
6 ready idle 12876s 103875 5 /Application/ugsvols/bldata01/logs/imanscript760.syslog
7 ready idle 11006s 103818 9 /Application/ugsvols/bldata01/logs/imanscript13098.syslog
8 ready idle 25350s 89031 55 /Application/ugsvols/bldata01/logs/imanscript16468.syslog
9 ready idle 27629s 100067 15 /Application/ugsvols/bldata01/logs/imanscript13563.syslog
10 ready idle 27944s 22320 44 /Application/ugsvols/bldata01/logs/imanscript22389.syslog
11 ready idle 30591s X030111 17 /Application/ugsvols/bldata01/logs/imanscript16773.syslog
12 ready idle 24957s 71604 189 /Application/ugsvols/bldata01/logs/imanscript14517.syslog
13 ready idle 33540s 106856 53 /Application/ugsvols/bldata01/logs/imanscript10395.syslog

--------------------------------------------------------------------------------

Queries
No queries.


--------------------------------------------------------------------------------

Recently deceased processes
username syslog
/Application/ugsvols/bldata01/logs/imanscript27453.syslog
/Application/ugsvols/bldata01/logs/imanscript20686.syslog
/Application/ugsvols/bldata01/logs/imanscript7927.syslog
/Application/ugsvols/bldata01/logs/imanscript21921.syslog
X044587 /Application/ugsvols/bldata01/logs/imanscript16747.syslog
X042268 /Application/ugsvols/bldata01/logs/imanscript25263.syslog
/Application/ugsvols/bldata01/logs/imanscript20233.syslog
/Application/ugsvols/bldata01/logs/imanscript3994.syslog
71447 /Application/ugsvols/bldata01/logs/imanscript9897.syslog
69872 /Application/ugsvols/bldata01/logs/imanscript11919.syslog

********************************************************

I want to find where this page is stored in the server. I checked the doc root path and went there and searched for all *.cgi files but no use. could you please guide me on this.
  #2 (permalink)  
Old 01-04-2007
vish_indian vish_indian is offline
Registered User
  
 

Join Date: Jun 2006
Location: Delhi, India
Posts: 92
You can use the find command to search for it.
Quote:
find /path/to/doc_root -name iman
Hope this helps. It might be a link to another directory
  #3 (permalink)  
Old 01-04-2007
grial's Avatar
grial grial is offline Forum Advisor  
El UNIX es como un toro
  
 

Join Date: Jun 2006
Location: Madrid (Spain)
Posts: 531
"iman" looks like a cgi, so, you have to look for the directory where cgis are stored. These are not always on the root dir of the web server. Also, the "real" name of the cgi file may not necessary be the same as the one shown in the URL. If you are using Apache, have a look at its config file and search for the "Directory", "ScriptAlias", and "Alias" directives.
Regards.

Last edited by grial; 01-04-2007 at 07:51 AM..
  #4 (permalink)  
Old 01-04-2007
Krrishv Krrishv is offline
Registered User
  
 

Join Date: Dec 2006
Location: CA,United States
Posts: 186
I am using Sun one webserver.
  #5 (permalink)  
Old 01-04-2007
DILEEP410 DILEEP410 is offline
Registered User
  
 

Join Date: Dec 2006
Posts: 148
follow this link http://docs.sun.com/source/817-1831-10/agcontnt.html. May be you can find some tips regarding url mapping in Sun One server.

With Regards
Dileep
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 05:09 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0