为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

1 回答

利用操作系统命令
网络命令: ping nslookup, nm-tool, tracertroute,
      dig, telnet, nc,curl
监控命令 : ps,netstat,pgrep
进程是否存在
端口是否存在

利用客户端命令,工具
  应用客户端:mysql,ab,mongo,php,jstack
   第三方工具包:nginxstatus, nagios-libexec
   集成命令(考虑可行性,安全性)

   服务端接口支持:
   1.nginx - http_stub_status_module
   2.nutcracker监控集群(redis,memcache) 状态
   3.Mongodb



   curl -m 5 -s -w %{http_code} http://10.156.11.173/ngx_status

   -o /dev/null --去掉一些输出


   Resettem=${tput sgr0}
   Nginxserver='http://10.156.11.173/nginx_status'

   Check_Nginx_Server(){
      Status_code=$(curl -m 5 -s -w %{http_code} ${Nginxserver} -o /dev/null)
      if[ $Status_code -eq 000 -o $Status_code -ge 500 ];then
        echo -e '\E[32m' "check http server error! Response status
    code is' $Status_code
       else
         Http_content=$(curl -s ${Nginxserver})
     echo -e '\E[ 32m' "check http server ok! \n"
     $Resettem $Http_content
          fi
   }

   Check_Nginx_Server


   --执行脚本
   sh check_server.sh
   cd monitor_man

   vim check_server.sh

0 回复 有任何疑惑可以回复我~
#1

snow5hao 提问者

非常感谢哈
2016-03-10 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Shell典型应用之nginx和mysql应用状态分析
  • 参与学习       31528    人
  • 解答问题       20    个

如何监控nginx和mysql运行状态,本教程为您揭开谜底

进入课程

脚本分享额

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信