How to Install Zabbix on Docker And Config Agent For Dummies
ฝัง
- เผยแพร่เมื่อ 4 ม.ค. 2025
- my website for downloading's the files :
www.open-sourc...
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.
I couldn't have done it without you!😍
very useful video, thanks to the Author !
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
Thanks a lot!) That was useful ) 👌 👍
Database error
Unable to select configuration.
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.
The Zabbix database version does not match current requirements. Your database version: 6000000. Required version: 5040000. Please contact your system administrator.
Really useful video thanks so much for sharing
👍
tks a lot! it's inspiring
👍👍👍
thank you so much bro
👍🏻🙂
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.
hi there any luck on solving this problem
Try to title things kinder
Does this work on ESXI 7.0.3? I can't seem to download from your link.