Nowadays, setting up a web server for internal use in a company intranet is very common. But, sometimes when your browser reports that you cannot connect to the main page of your web server, what can you do ?
Here is some simple diagnostic steps (assuming that the web server IP is 10.20.30.40) :
1. Ensure that your PC can reach the web server machine
ping 10.20.30.40
|
If you can ping the machine, the machine is proved to be up and running and is connected to the network.
2. telnet using port 80
telnet 10.20.30.40 80
|
Connecting To 10.20.30.40...
Could not open connection to the host, on port 80
Connect failed
|
get
|
<html> ..... .... .....
...... ..... ............. .... ....
Connection to host lost.
|
3. Check your own PC
Steps 1 and 2 confirm that the web server is up and running. If your browser still cannot display the HTML page, the problem must be in the client side, i.e. your own PC.
Here are some suggested actions:
- Check the personal firewall
- Check the browser setting / options (e.g. check pop-up blocking)
- If possible, try another browser
- When Java related, look at Java console
Disclaimer : All coding/commands in this article is distributed "as is" and is UNSUPPORTED. NO WARRANTY of any kind is expressed or implied. You use AT YOUR OWN RISK. The author will not be liable for any data loss,damages, and loss of profits or any other kind of tangible or intangible loss while using or misusing this coding/commands. |
No comments:
Post a Comment