elasticsearch watcher 郵件通知配置

elasticsearch各節點操作


# 安裝郵件發送客戶端工具mailx
yum install -y mailx

# elasticsearch.yml 添加以下配置
xpack.notification.email.account:
    work:
        profile: standard
        email_defaults:
            from: [email protected]
        smtp:
            auth: true
            starttls.enable: false     # 使用TLS無法連接,原因未知
            host: smtp.exmail.qq.com   # 騰訊企業郵箱
            port: 21
            user: [email protected]

# 執行以下命令設置發送者的郵箱祕密
/usr/share/elasticsearch/bin/elasticsearch-keystore add xpack.notification.email.account.work.smtp.secure_password
- Enter value for xpack.notification.email.account.work.smtp.secure_password:     

# 執行以下命令查看密碼文件是否生成
/usr/share/elasticsearch/bin/elasticsearch-keystore list
- keystore.seed
- xpack.notification.email.account.work.smtp.secure_password

# 重啓各節點的elasticsearch 服務
systemctl restart elasticsearch

登錄kibana配置watcher



測試發送郵件

測試郵件接收

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章