Create a code example of zabbix monitoring system based on Dockerfile

Create a code example of zabbix monitoring system based on Dockerfile

Use the for loop to import the zabbix image into the container

for n in `ls *.tar.gz`;do docker load -i $n ;done
 
Run zabbix-server using docker
docker run --name mysql-server -t \
   -e MYSQL_DATABASE="zabbix" \
   -e MYSQL_USER="zabbix" \
   -e MYSQL_PASSWORD="zabbix_pwd" \
   -e MYSQL_ROOT_PASSWORD="root_pwd" \
   -d mysql:5.7 \
   --character-set-server=utf8 --collation-server=utf8_bin
 
docker run --name zabbix-java-gateway -t \
   -d zabbix/zabbix-java-gateway:latest
 
docker run --name zabbix-server-mysql -t \
   -e DB_SERVER_HOST="mysql-server" \
   -e MYSQL_DATABASE="zabbix" \
   -e MYSQL_USER="zabbix" \
   -e MYSQL_PASSWORD="zabbix_pwd" \
   -e MYSQL_ROOT_PASSWORD="root_pwd" \
   -e ZBX_JAVAGATEWAY="zabbix-java-gateway" \
   --link mysql-server:mysql \
   --link zabbix-java-gateway:zabbix-java-gateway \
   -p 10051:10051 \
   -d zabbix/zabbix-server-mysql:latest
 
docker run --name zabbix-web-nginx-mysql -t \
   -e DB_SERVER_HOST="mysql-server" \
   -e MYSQL_DATABASE="zabbix" \
   -e MYSQL_USER="zabbix" \
   -e MYSQL_PASSWORD="zabbix_pwd" \
   -e MYSQL_ROOT_PASSWORD="root_pwd" \
   --link mysql-server:mysql \
   --link zabbix-server-mysql:zabbix-server \
   -p 80:80 \
   -d zabbix/zabbix-web-nginx-mysql:latest

Page visits:

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Zabbix monitoring docker application configuration
  • How to deploy zabbix_agent in docker
  • Detailed explanation of the process of installing Zabbix using Docker and configuring custom monitoring items

<<:  An article teaches you how to use js to achieve the barrage effect

>>:  CentOS7.5 installation of MySQL8.0.19 tutorial detailed instructions

Recommend

Who is a User Experience Designer?

Scary, isn't it! Translation in the picture: ...

How to deploy gitlab using Docker-compose

Docker-compose deploys gitlab 1. Install Docker I...

mysql command line script execution example

This article uses an example to illustrate the ex...

Summary of MySQL time statistics methods

When doing database statistics, you often need to...

Markup language - simplified tags

Click here to return to the 123WORDPRESS.COM HTML ...

Graphical tutorial on installing CentOS 7.3 on VMWare

Illustrated CentOS 7.3 installation steps for you...

WeChat applet uniapp realizes the left swipe to delete effect (complete code)

WeChat applet uniapp realizes the left swipe to d...

Implementation example of nginx access control

About Nginx, a high-performance, lightweight web ...

Each time Docker starts a container, the IP and hosts specified operations

Preface Every time you use Docker to start a Hado...

Implementation code of short video (douyin) watermark removal tool

Table of contents 1. Get the first link first 2. ...

Detailed explanation of basic concepts of HTML

What is HTML? HTML is a language used to describe...

How to install babel using npm in vscode

Preface The previous article introduced the insta...