This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
manual:installation:getting_zabbix [2014/09/25 15:14] sasha Links adapted because of a move operation |
manual:installation:getting_zabbix [2021/01/28 15:46] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ==== - #1 Getting Zabbix ==== | + | ==== 1 Getting Zabbix ==== |
=== Overview === | === Overview === | ||
- | There are three ways of getting Zabbix: | + | There are four ways of getting Zabbix: |
- | * Install it from the [[install#From_distribution_packages|distribution packages]] | + | * Install it from the [[install_from_packages#From_distribution_packages|distribution packages]] |
- | * Download the latest source archive and [[install#From_the_sources|compile it yourself]] | + | * Download the latest source archive and [[install#Installation_from_sources|compile it yourself]] |
+ | * Install it from the [[containers|containers]] | ||
* Download the [[manual:appliance|virtual appliance]] | * Download the [[manual:appliance|virtual appliance]] | ||
- | |||
- | To download the latest sources or the virtual appliance, go to the [[http://www.zabbix.com/download.php|Zabbix download page]], where direct links to latest versions are provided. To download older versions, see the link below stable version downloads. | ||
+ | To download the latest distribution packages, pre-compiled sources or the virtual appliance, go to the [[https://www.zabbix.com/download|Zabbix download page]], where direct links to latest versions are provided. | ||
+ | |||
+ | === Getting Zabbix source code === | ||
+ | |||
+ | There are several ways of getting Zabbix source code: | ||
+ | |||
+ | * You can [[https://www.zabbix.com/download_sources|download]] the released stable versions from the official Zabbix website | ||
+ | * You can [[https://www.zabbix.com/developers|download]] nightly builds from the official Zabbix website developer page | ||
+ | * You can get the latest development version from the Git source code repository system: | ||
+ | * The primary location of the full repository is at https://git.zabbix.com/scm/zbx/zabbix.git | ||
+ | * Master and supported releases are also mirrored to Github at https://github.com/zabbix/zabbix | ||
+ | |||
+ | A Git client must be installed to clone the repository. The official commandline Git client package is commonly called **git** in distributions. To install, for example, on Debian/Ubuntu, run: | ||
+ | |||
+ | sudo apt-get update | ||
+ | sudo apt-get install git | ||
+ | |||
+ | To grab all Zabbix source, change to the directory you want to place the code in and execute: | ||
+ | |||
+ | git clone https://git.zabbix.com/scm/zbx/zabbix.git |