README.md: adjust headers, link screenshot

This commit is contained in:
Thomas Gelf 2016-02-26 16:06:47 +01:00
parent da2ad842fa
commit 3997c10a05

View File

@ -10,9 +10,10 @@ It tries to target two main audiences:
What makes Icinga Director so special is the fact that it tries to target both What makes Icinga Director so special is the fact that it tries to target both
of them at once. of them at once.
![Icinga Director](https://www.icinga.org/wp-content/uploads/2016/02/director_main_screen.png)
Requirements Requirements
============ ------------
* Icinga 2 (>= 2.4.2) * Icinga 2 (>= 2.4.2)
* Icinga Web 2 (>= 2.2.0) * Icinga Web 2 (>= 2.2.0)
@ -21,17 +22,16 @@ Requirements
* PostgreSQL: the schema is lacking behind right now, we'll fix this soon. If you want to start testing Director today please use MySQL * PostgreSQL: the schema is lacking behind right now, we'll fix this soon. If you want to start testing Director today please use MySQL
Installation Installation
============ ------------
Create Icinga Director database ### Create Icinga Director database
-------------------------------
### MySQL #### MySQL
mysql -e "CREATE DATABASE director CHARACTER SET 'utf8'; mysql -e "CREATE DATABASE director CHARACTER SET 'utf8';
GRANT ALL ON director.* TO director@localhost IDENTIFIED BY 'some-password';" GRANT ALL ON director.* TO director@localhost IDENTIFIED BY 'some-password';"
### PostgreSQL #### PostgreSQL
CREATE DATABASE director WITH ENCODING 'UTF8'; CREATE DATABASE director WITH ENCODING 'UTF8';
CREATE USER director WITH PASSWORD 'some-password'; CREATE USER director WITH PASSWORD 'some-password';