我是靠谱客的博主 微笑鞋垫,最近开发中收集的这篇文章主要介绍python mysql ping_python取MYSQL数据库里的IP来PING,将结果再写到数据库中,但是第二次再取IP时便出错,取出来是空的...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#_*_coding:utf-8_*_importMySQLdbasmdbimportsysimportosimportthreadingconn=mdb.connect('localhost','root','root','test');withconn:cur=conn.cursor(mdb.cursors.DictCursor)cu...

# _*_ coding:utf-8 _*_

import MySQLdb as mdb

import sys

import os

import threading

conn = mdb.connect('localhost','root','root','test');

with conn:

cur = conn.cursor(mdb.cursors.DictCursor)

cur.execute("SELECT hostIP,id,status_id FROM website_serverhost")

rows = cur.fetchall()

for row in rows:

print "%s %s" % (row["id"],row["hostIP"])

data = os.system("ping -c 1 %s>/dev/null 2>&1" % row["hostIP"])

if data == 0:

print "%s:正常" % row["hostIP"]

cur.execute("INSERT INTO testrecord(hostIP, status) VALUES ('%s',1)"% row["hsotIP"])

else:

print "%s:中断" % ip

附报错信息:

Traceback (most recent call last):

File "pingServerHost.py", line 25, in

cur.execute("INSERT INTO testrecord(hostIP, status) VALUES ('%s',1)"% row["hsotIP"])

KeyError: 'hsotIP'

展开

最后

以上就是微笑鞋垫为你收集整理的python mysql ping_python取MYSQL数据库里的IP来PING,将结果再写到数据库中,但是第二次再取IP时便出错,取出来是空的...的全部内容,希望文章能够帮你解决python mysql ping_python取MYSQL数据库里的IP来PING,将结果再写到数据库中,但是第二次再取IP时便出错,取出来是空的...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部