43 lines
1.5 KiB
Markdown
43 lines
1.5 KiB
Markdown
# Installing <!-- {{ product }} --> on Ubuntu
|
||
|
||
The recommended way to install <!-- {{ product }} --> is to use prebuilt packages from our official release repository.
|
||
If the repository is not configured yet,
|
||
please [add](#adding-icinga-package-repository) it first
|
||
before [installing](#installing-the-package) the package.
|
||
|
||
All packages we provide are signed with the following [key](https://packages.icinga.com/icinga.key).
|
||
|
||
## Adding Icinga Package Repository
|
||
|
||
Here’s how to add the official release repository:
|
||
|
||
```bash
|
||
apt update
|
||
apt -y install apt-transport-https wget
|
||
|
||
wget -O icinga-archive-keyring.deb "https://packages.icinga.com/icinga-archive-keyring_latest+ubuntu$(
|
||
. /etc/os-release; echo "$VERSION_ID"
|
||
).deb"
|
||
|
||
apt install ./icinga-archive-keyring.deb
|
||
|
||
. /etc/os-release; if [ ! -z ${UBUNTU_CODENAME+x} ]; then DIST="${UBUNTU_CODENAME}"; else DIST="$(lsb_release -c| awk '{print $2}')"; fi; \
|
||
echo "deb [signed-by=/usr/share/keyrings/icinga-archive-keyring.gpg] https://packages.icinga.com/ubuntu icinga-${DIST} main" > \
|
||
/etc/apt/sources.list.d/${DIST}-icinga.list
|
||
echo "deb-src [signed-by=/usr/share/keyrings/icinga-archive-keyring.gpg] https://packages.icinga.com/ubuntu icinga-${DIST} main" >> \
|
||
/etc/apt/sources.list.d/${DIST}-icinga.list
|
||
|
||
apt update
|
||
```
|
||
|
||
## Installing the Package
|
||
|
||
Use your distribution's package manager to install the `<!-- {{ package }} -->` package as follows:
|
||
|
||
```bash
|
||
apt install <!-- {{ package }} -->
|
||
```
|
||
|
||
<!-- {% set ubuntu = True %} -->
|
||
<!-- {% include "02-Installation.md" %} -->
|