代码改变世界

随笔档案-2021年06月

Mongodb 监控脚本

2021-06-08 11:37 by hn3ya, 202 阅读, 收藏,
摘要: 工作中遇到mgondb经常因为内存不够宕机,影响业务,特编写此脚本。 #!/bin/bash #检查是否是root用户 if [ $(id -u) != "0" ] then echo "Not the root user! Try using sudo command!" exit 1 fi #监 阅读全文