
Zabbix is an enterprise-class open source distributed monitoring solution.
Zabbix is software that monitors numerous parameters of a network and the health and integrity of servers. Zabbix uses a flexible notification mechanism that allows users to configure e-mail based alerts for virtually any event. This allows a fast reaction to server problems. Zabbix offers excellent reporting and data visualisation features based on the stored data. This makes Zabbix ideal for capacity planning.
For more information and related downloads for Zabbix components, please visit https://hub.docker.com/u/zabbix/ and https://zabbix.com
Zabbix web interface is a part of Zabbix software. It is used to manage resources under monitoring and view monitoring statistics.
The image based on Nginx web server with MySQL database support.
zabbix-web-nginx-mysqlStart a Zabbix web-interface container as follows:
docker run --name some-zabbix-web-nginx-mysql -e DB_SERVER_HOST="some-mysql-server" -e MYSQL_USER="some-user" -e MYSQL_PASSWORD="some-password" -e ZBX_SERVER_HOST="some-zabbix-server" -e TZ="some-timezone" -d zabbix/zabbix-web-nginx-mysql:tag
Where some-zabbix-web-nginx-mysql is the name you want to assign to your container, some-mysql-server is IP or DNS name of MySQL server, some-user is user to connect to Zabbix database on MySQL server, some-password is the password to connect to MySQL server, some-zabbix-server is IP or DNS name of Zabbix server or proxy, some-timezone is PHP like timezone name and tag is the tag specifying the version you want. See the list above for relevant tags, or look at the full list of tags.
docker run --name some-zabbix-web-nginx-mysql --link some-zabbix-server:zabbix-server -e DB_SERVER_HOST="some-mysql-server" -e MYSQL_USER="some-user" -e MYSQL_PASSWORD="some-password" -e ZBX_SERVER_HOST="some-zabbix-server" -e TZ="some-timezone" -d zabbix/zabbix-web-nginx-mysql:tag
docker run --name some-zabbix-web-nginx-mysql --link some-mysql-server:mysql -e DB_SERVER_HOST="some-mysql-server" -e MYSQL_USER="some-user" -e MYSQL_PASSWORD="some-password" -e ZBX_SERVER_HOST="some-zabbix-server" -e TZ="some-timezone" -d zabbix/zabbix-web-nginx-mysql:tag
The docker exec command allows you to run commands inside a Docker container. The following command line will give you a bash shell inside your zabbix-web-nginx-mysql container:
$ docker exec -ti some-zabbix-web-nginx-mysql /bin/bash/
The Zabbix web interface log is available through Docker's container log:
$ docker logs some-zabbix-web-nginx-mysql
When you start the zabbix-web-nginx-mysql image, you can adjust the configuration of the Zabbix web interface by passing one or more environment variables on the docker run command line.
ZBX_SERVER_HOSTThis variable is IP or DNS name of Zabbix server. By default, value is zabbix-server.
ZBX_SERVER_PORTThis variable is port Zabbix server listening on. By default, value is 10051.
DB_SERVER_HOSTThis variable is IP or DNS name of MySQL server. By default, value is 'mysql-server'
DB_SERVER_PORTThis variable is port of MySQL server. By default, value is '3306'.
MYSQL_USER, MYSQL_PASSWORDThese variables are used by Zabbix web interface to connect to Zabbix database. By default, values are zabbix, zabbix.
MYSQL_DATABASEThe variable is Zabbix database name. By default, value is zabbix.
TZThe variable is timezone in PHP format. Full list of supported timezones are available on php.net. By default, value is 'Europe/Riga'.
ZBX_SERVER_NAMEThe variable is visible Zabbix installation name in right top corner of the web interface.
ZBX_MAXEXECUTIONTIMEThe varable is PHP max_execution_time option. By default, value is 300.
ZBX_MEMORYLIMITThe varable is PHP memory_limit option. By default, value is 128M.
ZBX_POSTMAXSIZEThe varable is PHP post_max_size option. By default, value is 16M.
ZBX_UPLOADMAXFILESIZEThe varable is PHP upload_max_filesize option. By default, value is 2M.
ZBX_MAXINPUTTIMEThe varable is PHP max_input_time option. By default, value is 300.
/etc/ssl/nginxThe volume allows to enable HTTPS for the Zabbix web interface. The volume must contains two files ssl.crt, ssl.key and dhparam.pem prepared for Nginx SSL connections.
Please follow official Nginx documentation to get more details about how to create certificate files.
The zabbix-web-nginx-mysql images come in many flavors, each designed for a specific use case.
zabbix-web-nginx-mysql:ubuntu-<version>This is the defacto image. If you are unsure about what your needs are, you probably want to use this one. It is designed to be used both as a throw away container (mount your source code and start the container to start your app), as well as the base to build other images off of.
zabbix-web-nginx-mysql:alpine-<version>This image is based on the popular Alpine Linux project, available in the alpine official image. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
This variant is highly recommended when final image size being as small as possible is desired. The main caveat to note is that it does use musl libc instead of glibc and friends, so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice. See this Hacker News comment thread for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.
To minimize image size, it's uncommon for additional related tools (such as git or bash) to be included in Alpine-based images. Using this image as a base, add the things you need in your own Dockerfile (see the alpine image description for examples of how to install packages if you are unfamiliar).
This image is officially supported on Docker version 1.12.0.
Support for older versions (down to 1.6) is provided on a best-effort basis.
Please see the Docker installation documentation for details on how to upgrade your Docker daemon.
Documentation for this image is stored in the web-nginx-mysql/ directory of the zabbix/zabbix-docker GitHub repo. Be sure to familiarize yourself with the repository's README.md file before attempting a pull request.
If you have any problems with or questions about this image, please contact us through a GitHub issue.
You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.
Before you start to code, we recommend discussing your plans through a GitHub issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.
Content type
Image
Digest
Size
52.2 MB
Last updated
almost 9 years ago
docker pull turgon37/armhf-zabbix-web-nginx-mysql