- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- CGI script needed
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-18-2008 05:49 PM
02-18-2008 05:49 PM
CGI script needed
I need a CGI script in which I can monitor some URLs in different environments / servers.
Does anybody already have this which I can use and modify the URLs to have a nice display to monitor those URLs through a single browser page.
Thanks,
Allan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-18-2008 10:57 PM
02-18-2008 10:57 PM
Re: CGI script needed
This is not clear (at least to me).
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 05:53 AM
02-19-2008 05:53 AM
Re: CGI script needed
You'll have to download and install.
I'll see if i can locate the url to download the file for you.
And also get an examplet of how to use it.
In the meantime do a search in the forums for wget and you'll probably beat me to the full answer.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 05:56 AM
02-19-2008 05:56 AM
Re: CGI script needed
That's the UK link where you can get teh wget software.
You can select a different country such as Canada etc. if you're elsewhere.
Don't forget to look at the software dependencies and ensure they're on your system before you install wget.
If you don't have the dependencies they should all be available on the same website.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 05:58 AM
02-19-2008 05:58 AM
Re: CGI script needed
Link to an ITRC thread with your answers. Near the end of the thread they give a sample script.
Hope this is what you need!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 09:09 AM
02-19-2008 09:09 AM
Re: CGI script needed
> This is not clear (at least to me).
I'm with you. (Also, "nice" is not a
well-defined attribute.)
> I need a CGI script [...]
Any language preference?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 09:22 AM
02-19-2008 09:22 AM
Re: CGI script needed
wget is a downloader. Downloading something is not what I would call monitor an URL.
But several "URLs through a single browser page" ... ?
How about a html page with a frame definition (+ a "refresh" META tag)?
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 11:15 AM
02-19-2008 11:15 AM
Re: CGI script needed
I want to monitor few URLs through a single web page. ( can be a cgi script so that I can open it through a browser page )
Since I want to monitor multiple URLs within a single browser page I want to have a nice layout to it.( categorised based on different environments - like prod , qa , integration ) since each environment it pointing different URL.
I hope it explains my problem a little better.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 11:26 AM
02-19-2008 11:26 AM
Re: CGI script needed
How about this.
Copy to a file, add the *.html extension and open in a browser.
=== cut here ===
<meta http-equiv="refresh" content="10;" />
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 11:29 AM
02-19-2008 11:29 AM
Re: CGI script needed
How do you want to monitor the URLs? Are you wanting to see if they work? Are you wanting to display multiple web pages in a single browser window? You must be more clear about exactly what you are trying to accomplish.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 02:04 PM
02-19-2008 02:04 PM
Re: CGI script needed
YES
and if I do a refresh ( of the browser )it should fetch me the current status.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2008 04:35 PM
02-19-2008 04:35 PM
Re: CGI script needed
> YES
In that case, I'd probably use wget to
attempt to fetch an URL, redirecting its
normal output to a file, then scan that file
for a success status ("200 OK", or whatever),
and put out whatever HTML would look "nice"
to show that result.
No, I don't already have a script to do this.