zoukankan      html  css  js  c++  java
  • Zabbix监控ssl证书到期时间(转载)

    Zabbix监控ssl证书到期时间(转载)

    监控脚本

    #!/bin/bash
    #20181219
    #获取ssl证书的过期时间
    #menghao
    
    #获取证书的有效时间
    time=$(echo | openssl s_client  -connect  $1:443 2>/dev/null | openssl x509 -noout -dates |awk -F'=' 'NR==2{print $2}')
    
    #有效时间生成时间戳
    time1=$(date +%s -d "$time")
    
    #当前时间生成时间戳
    time2=$(date +%s)
    
    #当前时间减去有效时间,获得将要过期的天数
    time3=$(((time1-time2)/(60*60*24)))
    
    echo $time3
    

    修改配置文件,添加如下行

    vim  /etc/zabbix/zabbix_agentd.conf 
    UserParameter=ssl_check[*],/etc/zabbix/script/ssl_check.sh $1
    

    在server端测试,看能不能获取到数据

    [udbac@localhost ~]$ zabbix_get -s 192.168.0.108 -p 10050 -k ssl_check[www.baidu.com]
    156
    

    成功获取到了数据,接下来配置zabbix界面

    配置-->主机-->监控项-->创建监控项
    主要是键值[ ]里面写要监控的网址,然后点击更新就行了!
    

    触发器:

    过期时间小于10则报警

    转载地址

    https://www.cnblogs.com/Star-Haitian/p/10483042.html
    
    
  • 相关阅读:
    HDU-1205
    HDU-2033
    HDU-2032
    HDU-2031
    HDU-2030
    HDU-2029
    HDU-2028
    HDU-2027
    HDU-2026
    HDU-2025
  • 原文地址:https://www.cnblogs.com/evescn/p/13066229.html
Copyright © 2011-2022 走看看