How to check whether the web page is up without dowloading any content


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to check whether the web page is up without dowloading any content
# 15  
Old 12-10-2009
Can you give me a website which is up and running.www.google.gnorky is not runningit seems.
and the site which i am checking need password and username. can you give me the code which can been used for authentication required site
# 16  
Old 12-10-2009
from man wget Smilie :
Code:
* If you want to encode your own username and password to HTTP or FTP, use the appropriate URL syntax.
        wget ftp://hniksic:mypassword@unix.server.com/.emacs

# 17  
Old 12-10-2009
Exactly it is not running, since gnorky is not a domain extension, but rather the sound an elephant makes when he's got a knot in his trunk and then he needs to sneeze.

You can substitute it for any website you'd like to test, for instance Google.
For user name password also have a look at the --post-data option in the man page.
# 18  
Old 12-10-2009
I am getting connection timed out for trying to get the response from Google.

Last edited by ahamed; 12-10-2009 at 06:08 PM..
# 19  
Old 12-10-2009
Code:
$ website="www.google.com"
$ if wget --spider $website >/dev/null 2>&1; then   echo Now I should send an email about $website being up; else   echo Now I should send an email about $website being down; fi
Now I should send an email about www.google.com being up

Are you not required to use your company's web proxy? If so you need to set these environment variables:
e.g.
Code:
export http_proxy=http://webproxy.acme.com:8080

Code:
export https_proxy=https://webproxy.acme.com:8080

Note: acme.com is not a real name and 8080 is just an example port . You should use your company's proxy server and port number.

Perhaps you are also required to enter user name and password for the proxy, see:

Code:
$ man wget|grep proxy-
       --proxy-user=user
       --proxy-password=password


Last edited by Scrutinizer; 12-10-2009 at 06:02 PM..
# 20  
Old 12-11-2009
My suggestion would be to use user agent (UA), which is very handy and effective

LWP::UserAgent - search.cpan.org
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Getting web page content and deliver via mail

Guys could you please help. I want to have shell scripts that get the website html content and same time mail html page to DL. Can any1 help here? (2 Replies)
Discussion started by: AnkitC
2 Replies

2. AIX

check web content - Ksh

Hi everybody! I wonder if I could see some text content of a website, via command line... That could be very helpful, in order to automatize a lot of projects im working on. thx a lot (2 Replies)
Discussion started by: Datinsky
2 Replies

3. UNIX Desktop Questions & Answers

Get a web page through CLI

Is there a way we can get a web page through CLI on a unix machine? Please help! (3 Replies)
Discussion started by: Pouchie1
3 Replies

4. Shell Programming and Scripting

File to web page

Hi all, I am having an XML file. And as per requirement I need to map fields of this file with various field of web page. So how can I use wput command into it ? Regards, gander_ss (3 Replies)
Discussion started by: gander_ss
3 Replies

5. Programming

fetching a web page in C

Hello, I'm a total newbie to HTTP commands, so I'm not sure how to do this. What I'd like is to write a C program to fetch the contents of a html page of a given address. Could someone help with this? Thanks in advance! (4 Replies)
Discussion started by: rayne
4 Replies

6. UNIX for Dummies Questions & Answers

Make a Web page

I'm 13 years of age and I am into computers. I am trying to learn how to make a webpage. I could use the help and I would greatly appriciate it. (1 Reply)
Discussion started by: lydia98
1 Replies

7. UNIX for Dummies Questions & Answers

how do i make a web page

hey uhh this is my first post and i was wondering how do i make a web page for like a small business or something anything will help thanks (3 Replies)
Discussion started by: Neil Peart
3 Replies

8. UNIX for Dummies Questions & Answers

Accessing Web Page

Hello, I am new to unix, but wanted to know how can we fetch data from a web page (i.e. an HTML Page), my requirement is to read an html page and wanted to create a flat file (text file) based on the contents available in the mentioned HTML page. Thanks Imtiaz (3 Replies)
Discussion started by: Imtiaz
3 Replies

9. UNIX for Dummies Questions & Answers

making a web page

Hey im new to unix! I am tryin to create a web page in unix and have done it all but when i try and load it it says permission denied!?> i have chmod a+rx for folder and file to make sure but still permissions wont let me?! any ideas can anyone do a quick run through of how to make a web page... (4 Replies)
Discussion started by: shashora
4 Replies

10. UNIX for Dummies Questions & Answers

Web page hosting

I built my website based on Dreamweaver, on Windows platform. My server uses Unix, and the page doesn't look too good. Is there any way to solve this problem without too much of a headache? (1 Reply)
Discussion started by: PCL
1 Replies
Login or Register to Ask a Question