Sign inSign up

gpax92/zabbix_as400

By gpax92

Updated over 1 year ago

Container zabbix for AS400 based on Kos's project by zabbix.com forum

Image
Monitoring & observability
1

943

gpax92/zabbix_as400 repository overview

Zabbix Agent for AS400

Overview

This Docker image provides a Zabbix Agent configured to monitor IBM AS400 (IBM i) systems based on Kos's project Zabbix Forum.

-> Github Project

Prerequisites

  1. Docker Engine installed and running on your system.
  2. A configuration file with your as400 parameters (ZabbixConfiguration.conf) located in the folder where you run the container
  3. An empty file (ZabbixLog.log) for Zabbix Agent log located in the folder where you run the container

Getting Started

Pull the Image:

docker pull gpax92/zabbix_as400:latest

Run container with zabbix as400 agent

docker run -d --name ZabbixNameForAs400 -p 10051:10051 \
-v ./ZabbixConfiguration.conf:/ZabbixData/zabbix_agentd.conf  \
-v ./ZabbixLog.log:/ZabbixData/zabbix_agentd.log \
gpax92/zabbix_as400:latest

With the previous command you start a zabbix agent for as400 in a container:

  • Port 10051 is essential for Zabbix Agent checks and must be open.
  • zabbix_agentd.conf is the configuration file for the zabbix agent.
  • zabbix_agentd.log is the log file for the zabbix agent.

Another option is:

Docker compose:

services:
  app:
    image: gpax92/zabbix_as400
    container_name: zabbix_as400
    volumes:
      - ./ZabbixConfiguration.conf:/ZabbixData/zabbix_agentd.conf
      - ./ZabbixLog.log:/ZabbixData/zabbix_agentd.log
    ports:
      - 10051:10051

To run this container, navigate to the folder containing your .yaml file and use:

docker compose up -d
Note:

This is a beta test, report any issues or feedback

Tag summary

Content type

Image

Digest

sha256:32a95abab

Size

211 MB

Last updated

over 1 year ago

docker pull gpax92/zabbix_as400