Hello community!
After many months of testing, we finally put ZABBIX in production!
I have a little problem with the "system information" Zabbix it does not go up ....
The zabbix-server agent is OK and the other Host too !

The installation is done under Rockylinux (Selinux deactivated) -> Docker
Under Docker I don't know how to configure the file "zabbix.conf.php" (not possible under a container ??)
Thanks in advance !
Translated with www.DeepL.com/Translator (free version)
After many months of testing, we finally put ZABBIX in production!
I have a little problem with the "system information" Zabbix it does not go up ....
The zabbix-server agent is OK and the other Host too !
The installation is done under Rockylinux (Selinux deactivated) -> Docker
Under Docker I don't know how to configure the file "zabbix.conf.php" (not possible under a container ??)
PHP Code:
docker run --name zabbix-server-mysql \
-t -e DB_SERVER_HOST="mysql-server" \
-e MYSQL_DATABASE="zabbix_XXXX" \
-e MYSQL_USER="zabbix_XXX" \
-e MYSQL_PASSWORD="XXXXX" \
-e MYSQL_ROOT_PASSWORD="XXXXX" \
-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
Translated with www.DeepL.com/Translator (free version)