mirror of
https://github.com/Icinga/icingadb.git
synced 2026-05-28 04:35:54 -04:00
parent
1c3bfcf99d
commit
db996b1839
4 changed files with 45 additions and 6 deletions
|
|
@ -13,9 +13,10 @@
|
|||
|
||||
## About
|
||||
|
||||
Icinga DB serves as a synchronisation daemon between Icinga 2 (Redis) and Icinga Web 2 (MySQL). It synchronises configuration, state and history of an Icinga 2 environment using checksums.
|
||||
Icinga DB serves as a synchronisation daemon between Icinga 2 (Redis) and Icinga Web 2 (MySQL/MariaDB/PostgreSQL database).
|
||||
It synchronises configuration, state and history of an Icinga 2 environment using checksums.
|
||||
|
||||
Icinga DB also supports reading from multiple environments and writing into a single MySQL instance.
|
||||
Icinga DB also supports reading from multiple environments and writing into a single database.
|
||||
|
||||
## License
|
||||
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
|
||||

|
||||
|
||||
Icinga DB serves as a synchronisation daemon between Icinga 2 (Redis) and Icinga Web 2 (MySQL). It synchronises configuration, volatile states and history of an Icinga 2 environment using checksums.
|
||||
Icinga DB serves as a synchronisation daemon between Icinga 2 (Redis) and Icinga Web 2 (MySQL/MariaDB/PostgreSQL database).
|
||||
It synchronises configuration, volatile states and history of an Icinga 2 environment using checksums.
|
||||
|
||||
Icinga DB also supports reading from multiple environments and writing into a single MySQL instance.
|
||||
Icinga DB also supports reading from multiple environments and writing into a single database.
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
## Requirements <a id="installation-requirements"></a>
|
||||
|
||||
* Local Redis instance (Will be installed during this documentation)
|
||||
* MySQL/MariaDB database `icingadb`, user and schema imports (Will be set up during this documentation)
|
||||
* MySQL/MariaDB/PostgreSQL database `icingadb`, user and schema imports (Will be set up during this documentation)
|
||||
|
||||
## Setting up Icinga DB <a id="setting-up-icingadb"></a>
|
||||
|
||||
|
|
@ -133,7 +133,11 @@ Debian/Ubuntu:
|
|||
apt-get install icingadb-redis
|
||||
```
|
||||
|
||||
### Setting up the MySQL database <a id="setting-up-mysql-db"></a>
|
||||
### Setting up the Database <a id="setting-up-db"></a>
|
||||
|
||||
A MySQL/MariaDB or PostgreSQL database is required.
|
||||
|
||||
#### MySQL/MariaDB <a id="setting-up-mysql-db"></a>
|
||||
|
||||
Note that if you're using a version of MySQL < 5.7 or MariaDB < 10.2, the following server options must be set:
|
||||
|
||||
|
|
@ -159,6 +163,38 @@ After creating the database, you can import the Icinga DB schema using the follo
|
|||
mysql -u root -p icingadb </usr/share/icingadb/schema/mysql/schema.sql
|
||||
```
|
||||
|
||||
#### PostgreSQL <a id="setting-up-pgsql-db"></a>
|
||||
|
||||
Set up a PostgreSQL database for Icinga DB:
|
||||
|
||||
```
|
||||
# su -l postgres
|
||||
|
||||
createuser -P icingadb
|
||||
createdb -E UTF8 -O icingadb icingadb
|
||||
```
|
||||
|
||||
Edit `pg_hba.conf`, insert the following before everything else:
|
||||
|
||||
```
|
||||
local all icingadb md5
|
||||
host all icingadb 0.0.0.0/0 md5
|
||||
host all icingadb ::/0 md5
|
||||
```
|
||||
|
||||
To apply those changes, run `systemctl reload postgresql`.
|
||||
(On RHEL/CentOS 7 the service is called "rh-postgresql95-postgresql".)
|
||||
|
||||
After creating the database you can import the Icinga DB schema using the
|
||||
following command. Enter the password when asked.
|
||||
|
||||
```
|
||||
psql -U icingadb icingadb < /usr/share/icingadb/schema/pgsql/schema.sql
|
||||
```
|
||||
|
||||
On RHEL/CentOS 7 prefix "createuser", "createdb" and "psql" with
|
||||
"/opt/rh/rh-postgresql95/root/usr/bin/".
|
||||
|
||||
### Running Icinga DB <a id="running-icingadb"></a>
|
||||
|
||||
Foreground:
|
||||
|
|
|
|||
|
|
@ -25,6 +25,7 @@ Configuration of the database used by Icinga DB.
|
|||
|
||||
Option | Description
|
||||
-------------------------|-----------------------------------------------
|
||||
type | **Optional.** Either `mysql` (default) or `pgsql`.
|
||||
host | **Required.** Database host or absolute Unix socket path.
|
||||
port | **Required.** Database port.
|
||||
database | **Required.** Database database.
|
||||
|
|
|
|||
Loading…
Reference in a new issue