mirror of
https://github.com/Icinga/icingabeat.git
synced 2025-08-15 06:48:08 +02:00
102 lines
2.4 KiB
Markdown
102 lines
2.4 KiB
Markdown
# Installation
|
|
|
|
## Packages
|
|
Packages are available on [packages.icinga.com](https://packages.icinga.com).
|
|
|
|
Depending on your distribution and version you need to run one of the following
|
|
commands:
|
|
|
|
#### Debian
|
|
|
|
``` shell
|
|
wget -O - https://packages.icinga.com/icinga.key | apt-key add -
|
|
echo 'deb http://packages.icinga.com/debian icinga-stretch main' > etc/apt/sources.list.d/icinga.list
|
|
```
|
|
|
|
``` shell
|
|
apt-get update
|
|
apt-get install icingabeat
|
|
```
|
|
|
|
#### Ubuntu
|
|
|
|
``` shell
|
|
wget -O - https://packages.icinga.com/icinga.key | apt-key add -
|
|
echo 'deb http://packages.icinga.com/ubuntu icinga-xenial main' > etc/apt/sources.list.d/icinga.list
|
|
```
|
|
|
|
``` shell
|
|
apt-get update
|
|
apt-get install icingabeat
|
|
```
|
|
|
|
#### CentOS
|
|
|
|
``` shell
|
|
yum install epel-release
|
|
rpm --import https://packages.icinga.com/icinga.key
|
|
yum install https://packages.icinga.com/epel/icinga-rpm-release-7-latest.noarch.rpm
|
|
```
|
|
|
|
``` shell
|
|
yum install icingabeat
|
|
```
|
|
|
|
#### RHEL
|
|
|
|
``` shell
|
|
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
|
|
rpm --import https://packages.icinga.com/icinga.key
|
|
yum install https://packages.icinga.com/epel/icinga-rpm-release-7-latest.noarch.rpm
|
|
```
|
|
|
|
``` shell
|
|
yum install icingabeat
|
|
```
|
|
|
|
#### SLES
|
|
|
|
``` shell
|
|
rpm --import https://packages.icinga.com/icinga.key
|
|
zypper ar https://packages.icinga.com/SUSE/ICINGA-release.repo
|
|
zypper ref
|
|
```
|
|
|
|
``` shell
|
|
zypper install icingabeat
|
|
```
|
|
|
|
### Run
|
|
Make sure you have configured Icingabeat properly before starting it. Use one
|
|
of the following commands to start Icingabeat:
|
|
|
|
* `service icingabeat start` or
|
|
* `systemctl icingabeat start` or
|
|
* `/etc/init.d/icingabeat start`
|
|
|
|
## Dashboards
|
|
We have dashboards prepared that you can use when getting started with
|
|
Icingabeat. They are meant to give you some inspiration before you start
|
|
exploring the data by yourself.
|
|
|
|
**Note:** The dashboards require Kibana >= 6.0
|
|
|
|
Import dashboards and index pattern:
|
|
``` shell
|
|
icingabeat setup
|
|
```
|
|
|
|
Set Kibana host, user and password if necessary:
|
|
``` shell
|
|
icingabeat setup -E setup.kibana.host=127.0.0.1:5601 -E setup.kibana.username=elastic -E setup.kibana.password=secret
|
|
```
|
|
|
|
## Manual Installation
|
|
|
|
Download and install a package or tarball from the
|
|
[latest release](https://github.com/Icinga/icingabeat/releases/latest) page.
|
|
|
|
## Development
|
|
Please follow [README.md](https://github.com/icinga/icingabeat/README.md) for
|
|
instructions about how to build icingabeat.
|