Shell脚本如下: vim monitor.sh 运行脚本:bash monitor.sh & 命令末尾的 & 号,意思是将这个任务放到后台去执行 那么如何停止脚本运行呢? (1)首先查找运行脚本的进程PID号 ps -aux |grep "bash monitor.sh" (2)终止脚本进程: ...
分类:
Web程序 时间:
2019-10-23 13:57:13
阅读次数:
109
#!/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
一、如何检查namenode是否正常运行?重启namenode的命令是什么? 通过节点信息和浏览器查看,通过脚本监控 hadoop-daemon.sh start namenode hdfs-daemon.sh start namenode 二、hdfs存储机制是怎样的? 1) client端发送写 ...
分类:
其他好文 时间:
2019-08-25 13:46:52
阅读次数:
943
编写以下脚本命令:[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
主要是为了巩固Python知识。如有错误请大家指出,共同进步~
分类:
其他好文 时间:
2019-07-24 19:12:16
阅读次数:
73
zabbix配合脚本监控Kafka 转自https://www.cnblogs.com/xionggeclub/p/9087141.html 简介: Kafka是一种高吞吐量的分布式发布订阅消息系统,它可以处理消费者规模的网站中的所有动作流数据。Kafka如下特性,受到诸多公司的青睐。 1、高吞吐量 ...
分类:
其他好文 时间:
2019-07-12 18:51:13
阅读次数:
150
原文地址: "https://medium.com/@devfire/how to become a devops engineer in six months or less part 5 deploy 83e790545c23" 原文作者: "Igor Kantor" 翻译君:CODING?戴维 ...
分类:
其他好文 时间:
2019-07-11 11:08:23
阅读次数:
131