Set default internal db password to icingaweb.

refs #4926
This commit is contained in:
Michael Friedrich 2013-10-20 18:23:01 +02:00 committed by Marius Hein
parent 3f27d988f0
commit 3bf4973fab
1 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ your backend, take a look at the various options described in `./configure --hel
It is required to set up all used Databases correctly, which basically means to create all needed user accounts and to
create all database tables. You will find the installation guides for the different databases in the sections below:
*IMPORTANT*: Select a secure password instead of "icinga" and alter the config/authentication.ini accordingly.
*IMPORTANT*: Select a secure password instead of "icingaweb" and alter the config/authentication.ini accordingly.
#### MySQL
@ -61,7 +61,7 @@ create all database tables. You will find the installation guides for the differ
mysql -u root -p
mysql> CREATE USER `icingaweb`@`localhost` IDENTIFIED BY 'icinga';
mysql> CREATE USER `icingaweb`@`localhost` IDENTIFIED BY 'icingaweb';
mysql> CREATE DATABASE `icingaweb`;
mysql> GRANT ALL PRIVILEGES ON `icingaweb`.* TO `icingaweb`@`localhost`;
mysql> FLUSH PRIVILEGES;
@ -81,7 +81,7 @@ create all database tables. You will find the installation guides for the differ
sudo su postgres
psql
postgres=# CREATE USER icingaweb WITH PASSWORD 'icinga';
postgres=# CREATE USER icingaweb WITH PASSWORD 'icingaweb';
postgres=# CREATE DATABASE icingaweb;
postgres=# \q