设为首页 收藏本站
查看: 805|回复: 0

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

[复制链接]

尚未签到

发表于 2015-12-1 06:59:09 | 显示全部楼层 |阅读模式
  最近要获取服务器各种参数,包括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,并定期更新的程序:



1 '''
2 Created on Dec 10, 2014
3
4 @author: liufei
5 '''
6 #coding=utf-8
7 import time, sched, os, string
8 from datetime import datetime
9 import MySQLdb
10  
11 s = sched.scheduler(time.time,time.sleep)
12
13 def event_func():
14     try:
15         #主机名
16         name = os.popen(""" hostname """).read()
17         #cpu数目
18         cpu_num = os.popen(""" cat /proc/cpuinfo | grep processor | wc -l """).read()
19         #内存大小
20         mem = os.popen(""" free | grep Mem | awk '{print $2}' """).read()
21         #机器品牌
22         brand = os.popen(""" dmidecode | grep 'Vendor' | head -1 | awk -F: '{print $2}' """).read()
23         #型号
24         model = os.popen(""" dmidecode | grep 'Product Name' | head -1 | awk -F: '{print $2}' """).read()
25         #磁盘大小
26         storage = os.popen(""" fdisk -l | grep 'Disk /dev/sd' | awk 'BEGIN{sum=0}{sum=sum+$3}END{print sum}' """).read()
27         #mac地址
28         mac = os.popen(""" ifconfig -a | grep HWaddr | head -1 | awk '{print $5}' """).read()
29         
30     
31         
32         name = name.replace("\n","").lstrip()
33         cpu_num =  cpu_num.replace("\n","").lstrip()
34         memory_gb = round(string.atof(mem.replace("\n","").lstrip())/1000.0/1000.0, 1)
35         brand = brand.replace("\n","").lstrip()
36         model = model.replace("\n","").lstrip()
37         storage_gb = storage.replace("\n","").lstrip()
38         mac = mac.replace("\n","").lstrip()
39         
40         print name
41         print cpu_num
42         print memory_gb
43         print storage_gb
44         print brand
45         print model
46         print mac
47     
48         conn=MySQLdb.connect(host='xx.xx.xx.xx',user='USERNAME',passwd='PASSWORD',db='DBNAME',port=3306)
49         cur=conn.cursor()
50         cur.execute('select mac from servers where mac=%s',mac)
51         data = cur.fetchone()
52
53         if data is None:
54             value = [name, brand, model, memory_gb, storage_gb, cpu_num, mac, datetime.now(), datetime.now()]
55             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)            
56         else:
57             value1 = [name, brand, model, memory_gb, storage_gb, cpu_num, datetime.now(), mac]
58             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)
59            
60         conn.commit()
61         cur.close()
62         conn.close()
63         
64     except MySQLdb.Error,e:
65         print "Mysql Error %d: %s" % (e.args[0], e.args[1])
66     
67 def perform(inc):
68     s.enter(inc,0,perform,(inc,))
69     event_func()
70     
71 def mymain(inc=10):
72     s.enter(0,0,perform,(inc,))
73     s.run()
74  
75 if __name__ == "__main__":
76     mymain()
  

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-145559-1-1.html 上篇帖子: python文件读写操作与linux shell变量命令交互执行 下篇帖子: shell 执行ftp的动作和日志合并
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表