Zabbix monitoring system [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 10 years ago. Improve this question I want to monitor some things and I was wondering what of the following can be done using Zabbix easily, what can be … Read more

zabbix agent tls support

I’m installing zabbix agent on my machines and i’ve noticed that sometimes the agent doesn’t have the TLS lines ### Option: TLSKeyFile # Full pathname of a file containing the agent private key. # # Mandatory: no # Default: # TLSKeyFile= ### Option: TLSPSKIdentity # Unique, case sensitive string used to identify the pre-shared key. … Read more

ZABBIX : Should I need to add the ListenIP in all my host machines zabbix-agentd.conf file?

zabbix-agentd.conf file in HOST: ### Option: ListenIP # List of comma delimited IP addresses that the agent should listen on. # First IP address is sent to Zabbix server if connecting to it to retrieve list of active checks. # # Mandatory: no # Default: # ListenIP=0.0.0.0 Answer The config shows the default value, which … Read more

Update zabbix-agent mysql credentials

I want to monitor my mysql server with zabbix. So i’ve created a mysql user called zabbix. The user got a secret password. Now is my question where i can update the password in the zabbix config? I read some pages in the internet and found something like this: mysql.status[zabbix,super-secret-password,Slow_queries] Where should I insert this? … Read more

Zabbix not collecting data from Apache for Windows

I have a Zabbix 2.2 installation and I need to monitor a Windows Server running Apache. I have enabled mod_status, installed zapache (https://www.zabbix.org/wiki/Docs/howto/apache_monitoring_script#Method_3) and I am able to zabbix_get the values from the Zabbix Server: ubuntu@zabbix-server:/var/log$ zabbix_get -s <host> -p 10050 -k “apache[ReqPerSec]” 1.45184 ubuntu@zabbix-server:/var/log$ zabbix_get -s <host> -p 10050 -k “apache[BytesPerReq]” 2446.25 However, when … Read more

zabbix_agent + socat hanging with close_wait

I have the following setup: remote devices running active zabbix_agentd (version 2.0) using socat to tunnel through an HTTPS proxy. On the server side: Apache with a proxy service allowing CONNECT to localhost:10051 (zabbix_proxy). The connection is encrypted with SSL, requiring valid client certificate. On the client side: Socat beta8 command line: socat -d -d … Read more

Get current status from httptest (Zabbix)

I’m trying to use PHP/CURL to query Zabbix and find whether a service is available or not. From Zabbix Web interface, I get this screen, which shows the test and its status. Zabbix Web Interface I’d like to get this data (test name and status) as JSON in order to display in another application. I’m … Read more