# How to enable kibana(ELK) *Ingest Manager*
###### tags: `By_Ivan`
Ingest Manager is a central controlling module which can handle the beats from a highter perspective.
It's a experimental feature at the point when this document was writen.
1. **Create a elasticsearch user with superuser role:**
> run the following command on terminal:
```shell
$ bin/elasticsearch-users useradd <"user_name">
$ bin/elasticsearch-users roles <"user_name"> -a superuser
```
> other functions and related arguments can be found by using:
```shell
$ bin/elasticsearch-users -h
```
2. **Config setting:**
> elasticsearch.yml:
```yaml
xpack.security.enabled: true
xpack.security.authc.api_key.enabled: true
```
> kibana.yml:
```yaml
xpack.security.enabled: true
xpack.ingestManager.fleet.tlsCheckDisabled: true
xpack.encryptedSavedObjects.encryptionKey: <"something_longer_then_32_words">
xpack.ingestManager.enabled: true
elasticsearch.username: <"your_username">
elasticsearch.password: <"your_password">
```