17.解決zabbix host [Windows host] not found

來源:互聯網
上載者:User

標籤:zabbix

 zabbix的伺服器日誌會出現如下報錯:

  2389:20160223:113026.665 cannot send list of active checks to [10.0.5.10]: host [Windows host] not found


  出現這個問題的原因是因為dashboard中顯示的hostname為用戶端ip地址,而zabbix用戶端設定檔中的Hostname還是預設的“Windows host”,我們通過ansible調用python解決這個問題:


python代碼如下:

#!/usr/bin/pythonimport osimport timeimport socketimport fileinputos.system(‘sc stop "Zabbix Agent"‘)time.sleep(10)hostname = socket.gethostbyname(socket.gethostname())for line in fileinput.input("C:\zabbix_agents_2.2.9.win\conf\zabbix_agentd.win.conf", inplace=1):    line = line.replace("Hostname=Windows host", "Hostname=%s" % (hostname))    print line,os.system(‘sc start "Zabbix Agent"‘)


通過ansible進行批量修改:

ansible win -m script -a "/root/windows/zabbix_hostname.py"


本文出自 “11062687” 部落格,請務必保留此出處http://11072687.blog.51cto.com/11062687/1744224

17.解決zabbix host [Windows host] not found

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.