#!/bin/bashstatus=/etc/init.d/DmServiceDMSERVERstatus|greprunning|wc-lprocess=ps-ef|grepdmserver|grep-vgrep|wc-lport=lsof-i:5236|grep-ilisten|wc-lif[$port-ne0]&&[$process-ne0]&&[$statu
分类:
数据库 时间:
2019-10-23 09:51:53
阅读次数:
126
赋予脚本执行权限 chmod +x xxx.sh chmod 777 xxx.sh 加入定时任务 crontab -e */1 * * * * shell_path 每分钟执行 ...
分类:
系统相关 时间:
2019-09-26 00:32:39
阅读次数:
122
(1)性能监控脚本 performance.sh (2) 进程监控脚本 process.sh (3) 流量监控脚本 network.sh (4) 流量分析统计脚本 tongji.sh ...
分类:
系统相关 时间:
2019-09-11 22:11:39
阅读次数:
130
编写以下脚本命令:[root@localhostsh]#vimsysmon.sh#!/bin/bash#提取性能监控指标(磁盘占用、CPU使用、内存使用)DUG=$(df-h|grep"/$"|awk‘{print$5}‘|awk-F%‘{print$1}‘)CUG=$(expr100-$(mpstat|tail-1|awk‘{print$12}‘|awk-F.‘{print$1}‘))MUG=$
分类:
系统相关 时间:
2019-08-10 15:49:30
阅读次数:
119
一、目前网站架构一般分成负载均衡层、web层和数据库层,我其实一般还会多加一层,即文件服务器层,因为现在随着网站的PV越来越多,文件服务器的压力也越来越大;不过随着moosefs、DRDB+Heartbeat的日趋成熟,这问题也不大了.网站最前端的负载均衡层称之为Director,它起的是分摊请求的 ...
分类:
系统相关 时间:
2019-07-31 11:03:49
阅读次数:
112
编写如下脚本(根据实际情况来修改邮件发送目的地址):[root@localhost~]#catsysmon.sh#!/bin/bashdug=$(df-h|grep"/$"|awk‘{print$5}‘|awk-F%‘{print$1}‘)cug=$(expr100-$(mpstat|tail-1|awk‘{print$12}‘|awk-F.‘{print$1}‘))mug=$(expr$(fre
分类:
系统相关 时间:
2019-05-23 00:56:50
阅读次数:
163
用shell脚本监控进程是否存在不存在则启动的实例,先上代码干货:#!/bin/shps-fe|grepprocessString|grep-vgrepif[$?-ne0]thenecho"startprocess....."elseecho"runing....."fiprocessString表示进程特征字符串,能够查询到唯一进程的特征字符串0表示存在的$?-ne0不存在,$?-eq0存在定时
分类:
系统相关 时间:
2018-11-28 23:52:25
阅读次数:
221
用shell脚本监控进程是否存在 不存在则启动的实例,先上代码干货: #!/bin/shps -fe|grep processString |grep -v grepif [ $? -ne 0 ]thenecho "start process....."elseecho "runing....."f ...
分类:
系统相关 时间:
2018-11-26 20:05:02
阅读次数:
193
公司最近网站改版,增加了redis服务器,现领导要求需要测试redis的监控,于是从网上找了个redis的监控脚本,简单的修改了一下,测试中没出现任何问题。生产环境中,可根据实际要监控的参数值修改脚本内容,并添加相应的触发器。Redis有自带的redis-cli客户端,通过info命令可以查询到redis的运行情况,我们可以写个shell脚本,通过zabbix来调用这个脚本实现redis的监控。一
分类:
系统相关 时间:
2018-10-31 17:00:03
阅读次数:
190
用shell脚本监控进程是否存在 不存在则启动的实例: #!/bin/shps -fe|grep processString |grep -v grepif [ $? -ne 0 ]thenecho "start process....." nohup php yii test/action & e ...
分类:
系统相关 时间:
2018-10-31 10:44:19
阅读次数:
177