时间:2021-05-22
复制代码 代码如下:
import httplib
import os
import time
def check_http(i):
try:
conn=httplib.HTTPConnection(i, 80, timeout=2)
conn.request("GET","/")
response = conn.getresponse()
except Exception as e:
print "server "+i+" is down"
print e
print ""
os.system('./delete_real_server.sh '+i)
else:
#print response.read()
print "server "+i+" is up\n"
os.system('./add_real.server.sh '+i)
if __name__=="__main__":
httpservers=["127.0.0.1","10.0.0.1","192.168.35.28"]
while 1:
current_time=time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
for i in httpservers:
check_http(i)
print current_time+" check finish\n"
time.sleep(60)
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一、lvs-nat模式网络配置:复制代码代码如下:lvs-servereth0:host-onlyadapter192.168.56.101lvs-server
需求:Python检测URL状态,并追加保存200的URL代码一:#!/usr/bin/envpython#coding=utf-8importsysimpor
一、安装telnet1、检测telnet-server的rpm包是否安装 [root@localhost~]#rpm-qatelnet-server 若无输
本文实例讲述了Python检测QQ在线状态的方法。分享给大家供大家参考。具体实现方法如下:importtime,datetimeimporturllib2def
curl虽然功能强大,但是只能伪造$_SERVER["HTTP_X_FORWARDED_FOR"],对于大多数IP地址检测程序来说,$_SERVER["REMO