1. 首页
  2. 数据库
  3. 其它
  4. python检测lvs real server状态

python检测lvs real server状态

上传者: 2020-12-30 14:36:46上传 PDF文件 32.14KB 热度 3次
复制代码 代码如下:import httplibimport osimport 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.syst
用户评论