python执行shell获取硬件参数写入mysql的方法


Posted in Python onDecember 29, 2014

本文实例讲述了python执行shell获取硬件参数写入mysql的方法。分享给大家供大家参考。具体分析如下:

最近要获取服务器各种参数,包括cpu、内存、磁盘、型号等信息。试用了Hyperic HQ、Nagios和Snmp,它们功能都挺强大的,但是于需求不是太符,亦或者太heavy。

于是乎想到用python执行shell获取这些信息,python执行shell脚本有以下三种方法:

1. os.system()

os.system('ls')

#返回结果0或者1,不能得到命令的输出

2. os.popen()
output = os.popen('ls')

print output.read()

#打印出的是命令输出,但是得不到执行的返回值

3. commands.getstatusoutput()
(status, output) = commands.getstatusoutput('ls')

print status, output

#打印出返回值和命令输出

可以根据需要选取其中一种方法,以下是python执行shell获取硬件参数写入mysql,并定期更新的程序:
'''

Created on Dec 10, 2014
@author: liufei

'''

#coding=utf-8

import time, sched, os, string

from datetime import datetime

import MySQLdb

 

s = sched.scheduler(time.time,time.sleep)
def event_func():

    try:

        #主机名

        name = os.popen(""" hostname """).read()

        #cpu数目

        cpu_num = os.popen(""" cat /proc/cpuinfo | grep processor | wc -l """).read()

        #内存大小

        mem = os.popen(""" free | grep Mem | awk '{print $2}' """).read()

        #机器品牌

        brand = os.popen(""" dmidecode | grep 'Vendor' | head -1 | awk -F: '{print $2}' """).read()

        #型号

        model = os.popen(""" dmidecode | grep 'Product Name' | head -1 | awk -F: '{print $2}' """).read()

        #磁盘大小

        storage = os.popen(""" fdisk -l | grep 'Disk /dev/sd' | awk 'BEGIN{sum=0}{sum=sum+$3}END{print sum}' """).read()

        #mac地址

        mac = os.popen(""" ifconfig -a | grep HWaddr | head -1 | awk '{print $5}' """).read()

        

        name = name.replace("\n","").lstrip()

        cpu_num =  cpu_num.replace("\n","").lstrip()

        memory_gb = round(string.atof(mem.replace("\n","").lstrip())/1000.0/1000.0, 1)

        brand = brand.replace("\n","").lstrip()

        model = model.replace("\n","").lstrip()

        storage_gb = storage.replace("\n","").lstrip()

        mac = mac.replace("\n","").lstrip()

        

        print name

        print cpu_num

        print memory_gb

        print storage_gb

        print brand

        print model

        print mac

    

        conn=MySQLdb.connect(host='xx.xx.xx.xx',user='USERNAME',passwd='PASSWORD',db='DBNAME',port=3306)

        cur=conn.cursor()

        cur.execute('select mac from servers where mac=%s',mac)

        data = cur.fetchone()
        if data is None:

            value = [name, brand, model, memory_gb, storage_gb, cpu_num, mac, datetime.now(), datetime.now()]

            cur.execute("insert into servers(name, brand, model, memory_gb, storage_gb, cpu_num, mac,  created_at, updated_at) values(%s, %s, %s, %s, %s, %s, %s, %s, %s)",value)            

        else:

            value1 = [name, brand, model, memory_gb, storage_gb, cpu_num, datetime.now(), mac]

            cur.execute("update servers set name=%s,brand=%s,model=%s,memory_gb=%s,storage_gb=%s,cpu_num=%s, updated_at=%s where mac=%s",value1)

           

        conn.commit()

        cur.close()

        conn.close()

        

    except MySQLdb.Error,e:

        print "Mysql Error %d: %s" % (e.args[0], e.args[1])

    

def perform(inc):

    s.enter(inc,0,perform,(inc,))

    event_func()

    

def mymain(inc=10):

    s.enter(0,0,perform,(inc,))

    s.run()

 

if __name__ == "__main__":

    mymain()

希望本文所述对大家的Python程序设计有所帮助。

Python 相关文章推荐
Python中常用操作字符串的函数与方法总结
Feb 04 Python
详解python 字符串和日期之间转换 StringAndDate
May 04 Python
python3下使用cv2.imwrite存储带有中文路径图片的方法
May 10 Python
Python实现矩阵相乘的三种方法小结
Jul 26 Python
对Pandas MultiIndex(多重索引)详解
Nov 16 Python
python3+openCV 获取图片中文本区域的最小外接矩形实例
Jun 02 Python
Python Tornado核心及相关原理详解
Jun 24 Python
基于python requests selenium爬取excel vba过程解析
Aug 12 Python
python各种excel写入方式的速度对比
Nov 10 Python
Sentry错误日志监控使用方法解析
Nov 12 Python
python实战之一步一步教你绘制小猪佩奇
Apr 22 Python
关于Python使用turtle库画任意图的问题
Apr 01 Python
简单的抓取淘宝图片的Python爬虫
Dec 25 #Python
简单使用Python自动生成文章
Dec 25 #Python
Python 抓取动态网页内容方案详解
Dec 25 #Python
利用Psyco提升Python运行速度
Dec 24 #Python
Python解决鸡兔同笼问题的方法
Dec 20 #Python
Python列表计数及插入实例
Dec 17 #Python
Python二维码生成库qrcode安装和使用示例
Dec 16 #Python
You might like
php $_SERVER当前完整url的写法
2009/11/12 PHP
php的array_multisort()使用方法介绍
2012/05/16 PHP
mac环境中使用brew安装php5.5.15
2014/08/18 PHP
修改WordPress中文章编辑器的样式的方法详解
2015/12/15 PHP
PHP使用file_get_contents发送http请求功能简单示例
2018/04/29 PHP
js网页侧边随页面滚动广告效果实现
2011/04/14 Javascript
jQuery的slideToggle方法实例
2013/05/07 Javascript
javascript使用for循环批量注册的事件不能正确获取索引值的解决方法
2014/12/20 Javascript
JavaScript头像上传插件源码分享
2016/03/29 Javascript
node.js学习之断言assert的使用示例
2017/09/28 Javascript
Python计算回文数的方法
2015/03/11 Python
python 实现语音聊天机器人的示例代码
2018/12/02 Python
python assert的用处示例详解
2019/04/01 Python
Python实现Linux监控的方法
2019/05/16 Python
PyTorch的Optimizer训练工具的实现
2019/08/18 Python
Python字符串大小写转换拼接删除空白
2019/09/19 Python
用python画一只可爱的皮卡丘实例
2019/11/21 Python
python实现简单贪吃蛇游戏
2020/09/29 Python
html5跨域通讯之postMessage的用法总结
2013/11/07 HTML / CSS
配置管理计划的主要内容有哪些
2014/06/20 面试题
办公室内勤工作职责
2013/12/11 职场文书
银行营业厅大堂经理岗位职责
2014/01/06 职场文书
致标枪运动员加油稿
2014/02/15 职场文书
《和田的维吾尔》教学反思
2014/04/14 职场文书
2014最新党员违纪检讨书
2014/10/12 职场文书
企业整改报告范文
2014/11/08 职场文书
小学校长个人总结
2015/03/03 职场文书
2015年化验员工作总结
2015/04/10 职场文书
贫困证明书范文
2015/06/16 职场文书
公司老总年会致辞
2015/07/30 职场文书
《分一些蚊子进来》读后感3篇
2020/01/09 职场文书
Python代码风格与编程习惯重要吗?
2021/06/03 Python
IDEA2021.2配置docker如何将springboot项目打成镜像一键发布部署
2021/09/25 Java/Android
vue项目proxyTable配置和部署服务器
2022/04/14 Vue.js
MySQL数据库中的锁、解锁以及删除事务
2022/05/06 MySQL
SQL Server删除表中的重复数据
2022/05/25 SQL Server