Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check server is up?

Tags:

java

websphere

I have got a cluster of two server nodes IBM Websphere Application Server on two different physical machine.Can anybody help me with java code to check whether my server instance is running or when one of the server is not up and running?

like image 766
Gopinathan K M Avatar asked Jan 23 '26 06:01

Gopinathan K M


1 Answers

To do it quickly and portably, you can check for a page if it's served by the server.

For example you can:

boolean isAlive = true;
try {
  URL hp = new URL("http://yourserver/TestPage.html"); 
  URLConnection hpCon = hp.openConnection(); 
  // add more checks...
} catch (Exception e) {
  isAlive = false;
}

This not much sophisticated method will work with every http server.

like image 88
Andrea Colleoni Avatar answered Jan 25 '26 18:01

Andrea Colleoni



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!