hi,
I upgraded Zabbix from 6.0 LTS to 7.0 LTS. now zabbix getting below error and stop working.is there a guide for upgrading timescaledb for zabbix?
4195:20240814:133016.165 TimescaleDB version 20601 is not officially supported. Recommended version is at least TimescaleDB Community Edition 2.13.0.
4195:20240814:133016.169 Zabbix Server stopped. Zabbix 7.0.2 (revision d1b0c3308ce).
my first timescaledb installation procedure for zabbix is below
--install timescaledb
apt install -y gnupg postgresql-common apt-transport-https lsb-release wget
/usr/share/postgresql-common/pgdg/apt.postgresql.org.sh
echo "deb https://packagecloud.io/timescale/timescaledb/ubuntu/ $(lsb_release -c -s) main" > /etc/apt/sources.list.d/timescaledb.list
wget --quiet -O - https://packagecloud.io/timescale/timescaledb/gpgkey | sudo sh -c "gpg --dearmor > /etc/apt/trusted.gpg.d/timescaledb.gpg"
apt -y update
apt-get install -y timescaledb-2-postgresql-14='2.6.1*' timescaledb-2-loader-postgresql-14='2.6.1*'
sudo timescaledb-tune --quiet --yes
systemctl restart postgresql
systemctl status postgresql
--create extension
psql
\c zabbix
CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
--apply sql file
cat /usr/share/zabbix-sql-scripts/postgresql/timescaledb.sql | sudo -u zabbix psql zabbix
systemctl restart postgresql
I upgraded Zabbix from 6.0 LTS to 7.0 LTS. now zabbix getting below error and stop working.is there a guide for upgrading timescaledb for zabbix?
4195:20240814:133016.165 TimescaleDB version 20601 is not officially supported. Recommended version is at least TimescaleDB Community Edition 2.13.0.
4195:20240814:133016.169 Zabbix Server stopped. Zabbix 7.0.2 (revision d1b0c3308ce).
my first timescaledb installation procedure for zabbix is below
--install timescaledb
apt install -y gnupg postgresql-common apt-transport-https lsb-release wget
/usr/share/postgresql-common/pgdg/apt.postgresql.org.sh
echo "deb https://packagecloud.io/timescale/timescaledb/ubuntu/ $(lsb_release -c -s) main" > /etc/apt/sources.list.d/timescaledb.list
wget --quiet -O - https://packagecloud.io/timescale/timescaledb/gpgkey | sudo sh -c "gpg --dearmor > /etc/apt/trusted.gpg.d/timescaledb.gpg"
apt -y update
apt-get install -y timescaledb-2-postgresql-14='2.6.1*' timescaledb-2-loader-postgresql-14='2.6.1*'
sudo timescaledb-tune --quiet --yes
systemctl restart postgresql
systemctl status postgresql
--create extension
psql
\c zabbix
CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
--apply sql file
cat /usr/share/zabbix-sql-scripts/postgresql/timescaledb.sql | sudo -u zabbix psql zabbix
systemctl restart postgresql
. I will check
Comment