#!/bin/bash#/usr/bin/nmaplocalhost|grep3306#lsof-i:3306MYSQLPORT=`netstat-na|grep"LISTEN"|grep"3306"|awk-F[:""]+‘{print$5}‘`functioncheckMysqlStatus(){/usr/bin/mysql-uroot-paaaaaa--connect_timeout=5-e"showdatabases;"&>/dev/null2>&1if[$?-ne0]th..
分类:
数据库 时间:
2015-10-28 12:50:47
阅读次数:
275
linux服务器敲命令反应慢,网站访问慢,到底什么情况?根据本人的经验,主要原因可能是系统资源到达瓶颈,已经无法处理更多请求。在有监控系统情况下,可以直接通过WEB页面可视化看出是CPU瓶颈?硬盘瓶颈?还是网络瓶颈?如果公司服务器较少或者云服务器,就有可能没有一套监控..
分类:
系统相关 时间:
2015-08-25 12:32:51
阅读次数:
318
现在想要监控服务的流量和并发数,可是又没那么多时间来写系统,其他的运维系统又不熟悉,于是就用现有的rrdtool shell做了个简单的监控界面,临时用下,也算是个小实验把。 rrdtool也是刚接触,算是一个小练习
流程大致的流程是这样的(centos6操作系统)
初始化rrd数据库
shell脚本定时更新rrd中的数据
shell脚本定时画图(这里就画了一个24小时的)生成图片
html,把图片...
分类:
其他好文 时间:
2015-07-03 12:21:52
阅读次数:
282
#!/bin/sh
#countmemory_used_rate,disk_used_rate
#@yuanwb2015-5
#disk_used_rate
#Dependonrealstorageplacetheparameter‘Location‘needtoalter.
Location=/dev/sda1
Disk_Used_Rate1=$(df-h|grep$Location|awk‘{print$5}‘)
free1=`echo$Disk_Used_Rate1|awk-F%‘{print$1}‘..
分类:
系统相关 时间:
2015-05-25 14:56:12
阅读次数:
286
#!/bin/sh
#countmemory_used_rate,disk_used_rate
#@yuanwb2015-5
#disk_used_rate
#Dependonrealstorageplacetheparameter‘Location‘needtoalter.
Location=/dev/sda1
Disk_Used_Rate1=$(df-h|grep$Location|awk‘{print$5}‘)
free1=`echo$Disk_Used_Rate1|awk-F%‘{print$1}‘..
分类:
系统相关 时间:
2015-05-25 14:54:26
阅读次数:
381
#!/bin/sh
#countmemory_used_rate,disk_used_rate
#@yuanwb2015-5
#disk_used_rate
#Dependonrealstorageplacetheparameter‘Location‘needtoalter.
Location=/dev/sda1
Disk_Used_Rate1=$(df-h|grep$Location|awk‘{print$5}‘)
free1=`echo$Disk_Used_Rate1|awk-F%‘{print$1}‘..
分类:
系统相关 时间:
2015-05-25 14:53:22
阅读次数:
261
#!/bin/sh
#countmemory_used_rate,disk_used_rate
#@yuanwb2015-5
#disk_used_rate
#Dependonrealstorageplacetheparameter‘Location‘needtoalter.
Location=/dev/sda1
Disk_Used_Rate1=$(df-h|grep$Location|awk‘{print$5}‘)
free1=`echo$Disk_Used_Rate1|awk-F%‘{print$1}‘..
分类:
系统相关 时间:
2015-05-25 14:53:13
阅读次数:
303
1、监控CPU利用率(通过vmstat工具)#!/bin/bash#====================================================#Author:lizhenliang-EMail:zhenliang369@163.com#CreateDate:2015-02-01#Description:cpuutilizationmonitor#blog:lizhenliang.blog.51cto.com#========================..
分类:
系统相关 时间:
2015-02-01 12:15:31
阅读次数:
304
用shell写了个脚本同时监控多台主机(监控主机是否在线,cpu,内存,硬盘,io使用状态,并有邮件通知功能),大神看后觉得有不当之处或有更好的实现方式,请不屑笔墨指出。首先要在被监控主机和监控主机之间建立信任关系,不了解ssh证书验证的可以看看:http://dragon123.blog...
分类:
系统相关 时间:
2014-12-24 06:26:52
阅读次数:
254
#!/bin/bash while [ 1 ] do SendMail_is_exstit=$(ps -ef | grep "feed SendMail" | grep -v grep | wc -l) if [ ${SendMail_is_exstit} == 0 ] then cd /var/www/sdkfeed/ ./app/Console/cake SendMail fi slee...
分类:
系统相关 时间:
2014-11-26 19:23:57
阅读次数:
229