How to check server connection - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T16:31:42Zhttp://stackoverflow.com/feeds/question/364978http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/364978/how-to-check-server-connection-3How to check server connectionEng.Basma2008-12-13T07:59:10Z2008-12-13T11:58:15Z
<p>Dear all;</p>
<p>i want to check my server connection to know if its available or not to inform the user..</p>
<p>so how to send a pkg or msg to the server (it's not SQL server; it's a server contains some serviecs) ...</p>
<p>thnx in adcvance ..</p>
http://stackoverflow.com/questions/364978/how-to-check-server-connection/364992#3649923Answer by paxdiablo for How to check server connectionpaxdiablo2008-12-13T08:17:32Z2008-12-13T08:17:32Z<p>With all the possibilities for firewalls blocking ICMP packets or specific ports, the only way to guarantee that a service is running is to do something that uses that service.</p>
<p>For instance, if it were a JDBC server, you could execute a non-destructive SQL query, such as <code>select * from sysibm.sysdummy1</code> for DB2. If it's a HTTP server, you could create a GET packet for index.htm.</p>
<p>If you actually have control over the service, it's a simple matter to create a special sub-service to handle these requests (such as you send through a CHECK packet and get back an OKAY response).</p>
<p>That way, you avoid all the possible firewall issues and the test is a true end-to-end one. PINGs and traceroutes will be able to tell if you can get to the machine (firewalls permitting) but they won't tell you if your service is functioning.</p>
<p>Take this from someone who's had to battle the network gods in a corporate environment where machines are locked up as tight as the proverbial fishes ...</p>
http://stackoverflow.com/questions/364978/how-to-check-server-connection/365139#3651390Answer by Unkwntech for How to check server connectionUnkwntech2008-12-13T11:58:15Z2008-12-13T11:58:15Z<p>If you can open a port but don't want to use ping (i dont know why but hey) you could use something like this:</p>
<pre><code>import socket
host = ''
port = 55555
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
s.bind((host, port))
s.listen(1)
while 1:
try:
clientsock, clientaddr = s.accept()
clientsock.sendall('alive')
clientsock.close()
except:
pass
</code></pre>
<p>which is nothing more then a simple python socket server listening on 55555 and returning alive</p>