Fading Coder

An Old Coder’s Final Dance

You are here: Home > Tech > Content

Troubleshooting Connection Issues with Zabbix Agent

Tech 3

Issue Analysis for Zabbix Agent Connection Problem

Observations:

  • Ping test to Zabbix actor: Successful.
  • Telnet Connection Check to Zabbix service on port 10050: Successful, implying no issues with the agent machine.

Testing Data Retrieval from Zabbix Agent:

Execute the following command on the server:

zabbix_get -s 1.1.1.1 -p 10050 -k "system.cpu.load[all,avg1]"

The data retrieval is successful.

Process Status:

Checked the zabbix_agentd process on the agent machine. It is functioning as epxected.

Host Configuration Inspection:

Upon examining the Zabbix-web configuration for the corresponding Host, DNS-related misconfiguration was discovered. Specificallly, the host uses SLB (server load balancer) servicce, but port 10050 was found to be closed.

Resolution:

Enable port 10050 in the SLB. After completing this adjustment, the issue with retrieving data from the Zabbix agent was resolved successfuly.

Tags: Zabbix

Related Articles

Understanding Strong and Weak References in Java

Strong References Strong reference are the most prevalent type of object referencing in Java. When an object has a strong reference pointing to it, the garbage collector will not reclaim its memory. F...

Comprehensive Guide to SSTI Explained with Payload Bypass Techniques

Introduction Server-Side Template Injection (SSTI) is a vulnerability in web applications where user input is improper handled within the template engine and executed on the server. This exploit can r...

Implement Image Upload Functionality for Django Integrated TinyMCE Editor

Django’s Admin panel is highly user-friendly, and pairing it with TinyMCE, an effective rich text editor, simplifies content management significantly. Combining the two is particular useful for bloggi...

Leave a Comment

Anonymous

◎Feel free to join the discussion and share your thoughts.