Hello,
after recently upgrade of my Debian system I have this error
my DB version is
my zabbix-server is installed over apt
So I have checked documentations, and there should be new parameter for this issue AllowUnsupportedDbVersions in version 6.0 https://www.zabbix.com/documentation.../zabbix_server
But even with this parameter I can't start zabbix server. I have another error in logs: "unknown parameter "AllowUnsupportedDbVersions" in config file"
Any help ?
after recently upgrade of my Debian system I have this error
Code:
1697672:20230306:143151.479 Unsupported DB! MariaDB version is 101102 which is higher than maximum of 101099 1697672:20230306:143151.479 1697672:20230306:143151.479 Unable to start Zabbix server due to unsupported MariaDB database version (10.11.02). 1697672:20230306:143151.479 Must not be higher than (10.10.xx). 1697672:20230306:143151.479 Use of supported database version is highly recommended.
Code:
mariadb Ver 15.1 Distrib 10.11.2-MariaDB, for debian-linux-gnu (x86_64) using EditLine wrapper
Code:
zabbix_server (Zabbix) 6.0.13 Revision fdfa8cef9ce 1 February 2023, compilation time: Feb 26 2023 00:13:37 Copyright (C) 2023 Zabbix SIA License GPLv2+: GNU GPL version 2 or later <https://www.gnu.org/licenses/>. This is free software: you are free to change and redistribute it according to the license. There is NO WARRANTY, to the extent permitted by law. Compiled with GnuTLS 3.7.9 Running with GnuTLS 3.7.9
Code:
root@nas:/etc/zabbix# tail zabbix_server.conf ## Option: ListenBacklog # The maximum number of pending connections in the queue. This parameter is passed to # listen() function as argument 'backlog' (see "man listen"). # # Mandatory: no # Range: 0 - INT_MAX (depends on system, too large values may be silently truncated to implementation-specified maximum) # Default: SOMAXCONN (hard-coded constant, depends on system) # ListenBacklog= AllowUnsupportedDbVersions=1
Code:
root@nas:/etc/zabbix# systemctl status zabbix-server
× zabbix-server.service - Zabbix Server (MySQL/MariaDB)
Loaded: loaded (/lib/systemd/system/zabbix-server.service; enabled; preset: enabled)
Active: failed (Result: exit-code) since Mon 2023-03-06 14:42:34 CET; 53s ago
Duration: 8ms
Docs: man:zabbix_server
Process: 1710787 ExecStart=/usr/sbin/zabbix_server --foreground (code=exited, status=1/FAILURE)
Main PID: 1710787 (code=exited, status=1/FAILURE)
mar 06 14:42:34 nas systemd[1]: Started zabbix-server.service - Zabbix Server (MySQL/MariaDB).
mar 06 14:42:34 nas zabbix_server[1710787]: zabbix_server [1710787]: unknown parameter "AllowUnsupportedDbVersions" in config file "/etc/zabbix/zabbix_server.conf", line 875
mar 06 14:42:34 nas systemd[1]: zabbix-server.service: Main process exited, code=exited, status=1/FAILURE
mar 06 14:42:34 nas systemd[1]: zabbix-server.service: Failed with result 'exit-code'.
Comment