Hello.
I'm trying to upgrade Zabbix 6.4.21 to any version of 7.X
Zabbix on a hyper-v virtual machine on Ubuntu 20.04.6, 12 GB of memory, disk space is available. OS updates are installed, php = 8.3.16, Postgresql database
How I'm updating
1) systemctl stop zabbix-server zabbix-agent
2) rm -Rf /etc/apt/sources.list.d/zabbix.list
3) wget https://repo.zabbix.com/zabbix/7.2/r...u20.04_all.deb
4) dpkg -i zabbix-release_latest_7.2+ubuntu20.04_all.deb
5) apt update
6) apt install --only-upgrade 'zabbix*' or apt install --only-upgrade zabbix-server-pgsql zabbix-frontend-php zabbix-agent
7) systemctl start zabbix-server zabbix-agent
I see that the packages have been updated.
But the database update does not start.
Version 6.4.21 remains in the web interface.
Apache2 has updated php
1) a2dismod php7.4
2) systemctl restart apache2
3) a2enmod php8.3
4) systemctl restart apache2
Made apt install php8.3-pgsql
Is there something else I'm missing? I'm just trying to upgrade to both 7.0.x and 7.2.x, but the database itself is not being updated. Maybe it can be started manually somehow?
Thanks for any help and advice.
I'm trying to upgrade Zabbix 6.4.21 to any version of 7.X
Zabbix on a hyper-v virtual machine on Ubuntu 20.04.6, 12 GB of memory, disk space is available. OS updates are installed, php = 8.3.16, Postgresql database
How I'm updating
1) systemctl stop zabbix-server zabbix-agent
2) rm -Rf /etc/apt/sources.list.d/zabbix.list
3) wget https://repo.zabbix.com/zabbix/7.2/r...u20.04_all.deb
4) dpkg -i zabbix-release_latest_7.2+ubuntu20.04_all.deb
5) apt update
6) apt install --only-upgrade 'zabbix*' or apt install --only-upgrade zabbix-server-pgsql zabbix-frontend-php zabbix-agent
7) systemctl start zabbix-server zabbix-agent
I see that the packages have been updated.
But the database update does not start.
Version 6.4.21 remains in the web interface.
Apache2 has updated php
1) a2dismod php7.4
2) systemctl restart apache2
3) a2enmod php8.3
4) systemctl restart apache2
Made apt install php8.3-pgsql
Is there something else I'm missing? I'm just trying to upgrade to both 7.0.x and 7.2.x, but the database itself is not being updated. Maybe it can be started manually somehow?
Thanks for any help and advice.
Comment