How to Install Zabbix on Docker And Config Agent For Dummies

preview_player
Показать описание
my website for downloading's the files :
the steps for installation:

Start a new Mysql container:

docker run --name mysql-server -t -e MYSQL_DATABASE="zabbix" -e MYSQL_USER="zabbix" -e MYSQL_PASSWORD="password" -e MYSQL_ROOT_PASSWORD="2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19" -d mysql --character-set-server=utf8 --collation-server=utf8_bin --default-authentication-plugin=mysql_native_password

Start a new container for the Zabbix java gateway:

docker run --name zabbix-java-gateway -t --restart unless-stopped -d zabbix/zabbix-java-gateway

Start a new container for the Zabbix server.:

docker run --name zabbix-server-mysql -t -e DB_SERVER_HOST="mysql-server" -e MYSQL_DATABASE="zabbix" -e MYSQL_USER="zabbix" -e MYSQL_PASSWORD="password" -e MYSQL_ROOT_PASSWORD="2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19" -e ZBX_JAVAGATEWAY="zabbix-java-gateway" --link mysql-server:mysql --link zabbix-java-gateway:zabbix-java-gateway -p 10051:10051 --restart unless-stopped -d zabbix/zabbix-server-mysql
Start a new container for the Zabbix web interface:

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="password" -e MYSQL_ROOT_PASSWORD="2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19" --link mysql-server:mysql --link zabbix-server-mysql:zabbix-server -p 80:8080 --restart unless-stopped -d zabbix/zabbix-web-nginx-mysql
Рекомендации по теме
Комментарии
Автор

First in many many videos that actually helped and worked w/out a hitch in my Virtual environment. Thank you.

rkn
Автор

I couldn't have done it without you!😍

vadimisrael
Автор

very useful video, thanks to the Author !

myckaylopererva
Автор

thanks bro you show the pacience to make posible the monitoring of my vm xd i was so desesperated with the unkown status, really thank you

chibancas
Автор

After i do all the steps, can''t enter into the web for config. The webpage doesn't not respond, i do the same as you.

heskcipolletti
Автор

Really useful video thanks so much for sharing

gaz
Автор

The Zabbix database version does not match current requirements. Your database version: Required version: 5040000. Please contact your system administrator. <===that's the error I got

wlee
Автор

Hello I've did all the steps in your video, the web interface starts up, but i get an error message on the dashboard that says: connection to zabbix server "localhost:10051" failed. i've tried the installation twice from zero. Could you advise, what could be the problem? Google wasnt my friend this time.

LaszloVas
Автор

Does this work on ESXI 7.0.3? I can't seem to download from your link.

anthonygegwetch