Hello,
I have Zabbix 2.4 installed via yum on CentOS 7.
Can I upgrade to version 3.0 using yum?
Thank you
I have Zabbix 2.4 installed via yum on CentOS 7.
Can I upgrade to version 3.0 using yum?
Thank you
[root@server ~]# rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm Retrieving http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm Preparing... ################################# [100%] file /etc/yum.repos.d/zabbix.repo from install of zabbix-release-3.0-1.el7.noarch conflicts with file from package zabbix-release-2.4-1.el7.noarch [root@server ~]#
rpm -qa | grep zabbix systemctl stop zabbix-server cp -ar /usr/share/zabbix/ /var/tmp/zabbix_web cp -ar /etc/zabbix/ /var/tmp/zabbix_etc DATABASE DUMP rpm -e zabbix-release rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm yum update rpm -qa | grep zabbix systemctl restart zabbix-agent systemctl restart zabbix-server
rpm -qa | grep zabbix systemctl stop zabbix-server cp -ar /usr/share/zabbix/ /var/tmp/zabbix_web cp -ar /etc/zabbix/ /var/tmp/zabbix_etc DATABASE DUMP rpm -e zabbix-release rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm yum update rpm -qa | grep zabbix systemctl restart zabbix-agent systemctl restart zabbix-server

# cat /etc/yum.repos.d/zabbix.repo [zabbix] name=Zabbix Official Repository - $basearch baseurl=http://repo.zabbix.com/zabbix/3.0/rhel/7/$basearch/ enabled=1 gpgcheck=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX [zabbix-non-supported] name=Zabbix Official Repository non-supported - $basearch baseurl=http://repo.zabbix.com/non-supported/rhel/7/$basearch/ enabled=1 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-ZABBIX gpgcheck=1
Comment