Getting the response code and to know whether web site is loaded


 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Getting the response code and to know whether web site is loaded
# 1  
Old 06-18-2014
Getting the response code and to know whether web site is loaded

Hi Guys,

Is there any way that we can know whether a website is fullly loaded with Linux command line ?? is there any command in Linux that can achieve that ??

Also,naturally I would also like to get the response code of the particular website/URL that i am testing for ??

Any help would be appreciated..

Thanks,
Pradeep

---------- Post updated at 01:03 PM ---------- Previous update was at 11:00 AM ----------

Any help guys ??

---------- Post updated 06-18-14 at 10:34 AM ---------- Previous update was 06-17-14 at 01:03 PM ----------

Any one ?? Smilie
# 2  
Old 06-18-2014
Instead of repeatedly bumping up your posts, maybe you should look at your original posting and ask yourself: Is there enough of a description here for people to figure out what I want?

What determines whether or not a website is fully loaded?

Are you trying to figure out if your web browser has finished loading a page you want to view in your browser?

Are you using your Linux system to host a website and want to know if trying to access any of the pages on that site from a browser will yield a 404 error?

I, at least, have absolutely no idea what you're trying to do. So, I didn't make any suggestions on how you might accomplish whatever it is you're trying to do.
# 3  
Old 06-18-2014
Other people might have the same question I do, which makes it difficult to suggestion a solution. I'm not sure what "fully loaded" means?

If you just want to know if the website is up and responding to HTTP requests, you can just use "curl" (or another HTTP client command) to pull a URL that indicates that everything is working OK.

But if "fully loaded" means something else, like some initialization has completed, then unless the URL you pick somehow verifies that the initialization is done, then it may not give you the info you want.
This User Gave Thanks to cnamejj For This Post:
# 4  
Old 06-18-2014
Quote:
Originally Posted by Don Cragun
Instead of repeatedly bumping up your posts, maybe you should look at your original posting and ask yourself: Is there enough of a description here for people to figure out what I want?

What determines whether or not a website is fully loaded?

Are you trying to figure out if your web browser has finished loading a page you want to view in your browser?

Are you using your Linux system to host a website and want to know if trying to access any of the pages on that site from a browser will yield a 404 error?

I, at least, have absolutely no idea what you're trying to do. So, I didn't make any suggestions on how you might accomplish whatever it is you're trying to do.

Sorry for bumping up the post twice..Apologies for that..

Yes..U r rite..I am trying to figure out if the web browser has finished loading a page I want to view in my browser .

---------- Post updated at 04:37 PM ---------- Previous update was at 04:33 PM ----------

Quote:
Originally Posted by cnamejj
Other people might have the same question I do, which makes it difficult to suggestion a solution. I'm not sure what "fully loaded" means?

If you just want to know if the website is up and responding to HTTP requests, you can just use "curl" (or another HTTP client command) to pull a URL that indicates that everything is working OK.

But if "fully loaded" means something else, like some initialization has completed, then unless the URL you pick somehow verifies that the initialization is done, then it may not give you the info you want.

Thanks for reply..By fully loaded, I mean whether all the contents in the URL , is fully loaded up in the browser I want to view .So ,not only I want to check the server is up and responding to HTTP requests, but also want to check whether the contents are loaded up .


Thanks
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. IP Networking

Tshark/pcap and web-server response time

Hi everyone! How can I get response time difference between GET and HTTP/1.0 200 OK (i mean time latency of web-server) with using of tshark&shell or something else for each hostname from pcap file? What can you recommend me to do that? (1 Reply)
Discussion started by: lepetal
1 Replies

2. Web Development

Apache Web Server - Invalid Response

Hi, I have a SCO Unix Openserver V6 server which is hosting a website with Apache V1.3 as the http server. The web site has an initial login screen which re-directs to another page once the user name and password has been verified. When connecting to the website and trying to login, it times... (0 Replies)
Discussion started by: Martyn
0 Replies

3. UNIX for Advanced & Expert Users

Checking response from a web page

wget --spider --user=xxxx --password=xxxx "http://xxx.xxxx.com" > /dev/null 2>&1; I am using the above command in if loop to check the response of the page without downloading the page. I just want to check whether the page is up and running. But when i execute the command i am getting HTTP... (2 Replies)
Discussion started by: ahamed
2 Replies

4. Shell Programming and Scripting

Checking response of the web page?

Hi, I need to check the response of the web page without downloading any content. I used the below command. _website=http://xxx.xxx.com wget --spider --user=username --password=password $_website > /home/username/temp.txt 2>&1; I getting the below error. The web page require... (3 Replies)
Discussion started by: ahamed
3 Replies

5. Shell Programming and Scripting

I need help in creating my first web site?

I have always wanted to create my own site, I've only had one class about the basics in creating web pages but know i would like to get into more and more detailed info about doing so anyone with alot of experience please help me out.:b: (0 Replies)
Discussion started by: kprescod4158
0 Replies

6. AIX

intranet web site

hello I would like to create an internal web site, but how do i make it with Aix ? I must to install apache and send my http pages in the declared repertory ? There are some configuration files to modify ?? thank you (2 Replies)
Discussion started by: pascalbout
2 Replies

7. UNIX for Dummies Questions & Answers

Web site mirroring

I have a unix server running RedHat Linux 9.0. I want to mirror my site on a different server with the same configuration so if the main server goes down, the other server will take over. How is this best accomplished? (1 Reply)
Discussion started by: wvmlt
1 Replies

8. UNIX for Dummies Questions & Answers

Web site setup

Hi, I have a m/c loaded with redhat linux, static IP address and this m/c intern connected to the internet thro leaseline. Now i need to setup a company website has www.abc.xyz.com. What necessary configuration i need to do so that others can view our website. Thanks Bache Gowda (5 Replies)
Discussion started by: bache_gowda
5 Replies
Login or Register to Ask a Question