Hello Uwe,
it's described in the file authentification.md;
you can't creating users in the gui, but in the mysql database:
### <a id="authentication-configuration-db-setup"></a> Database Setup
For authenticating against a database, you have to import one of the following
database schemas:
* **etc/schema/preferences.mysql.sql** (for **MySQL** database)
* **etc/schema/preferences.pgsql.sql** (for **PostgreSQL** databases)
After that you have to define the [database
resource](#resources-configuration-database).
**Manually Creating Users**
Icinga Web 2 uses the MD5 based BSD password algorithm. For generating a
password hash, please use the following
command:
````
openssl passwd -1 "password"
````
> Note: The switch to `openssl passwd` is the **number one** (`-1`) for using
> the MD5 based BSD password algorithm.
Insert the user into the database using the generated password hash:
````
INSERT INTO icingaweb_user (name, active, password_hash) VALUES ('icingaadmin',
1, 'hash from openssl');
.and it works.. :)
Von: icinga-users [mailto:[email protected]] Im Auftrag von
[email protected]
Gesendet: Freitag, 20. März 2015 11:32
An: [email protected]
Betreff: [icinga-users] Icinga 2 Web 2 add new user
Hi.
I installed Icinga 2 with frontend WEB 2.
All is working fine until now.
But now I tried to add a new user with reduced rights to the WEB 2 GUI.
But I can't find any option to add a new user.
I can only create a new role (.../icingaweb2/roles) .
But how to create a new user which I can add to this role?
Thanks and regards
Uwe Kopf
_______________________________________________
icinga-users mailing list
[email protected]
https://lists.icinga.org/mailman/listinfo/icinga-users