# b. Installing and configuring Kibana

## Download and Install Debian package manually

```
$ wget https://artifacts.elastic.co/downloads/kibana/kibana-7.8.0-amd64.deb
$ sudo dpkg -i kibana-7.8.0-amd64.deb
```

## Modify Configuration file

Edit `/etc/kibana/kibana.yml` Kibana's configuration file according to your network preferences and leave the rest at it is.

```yaml
#Listening port
server.port: 5601

#Server's IP
server.host: "192.168.20.222"

#Node Name
server.name: "elk_allinone"
```

## Starting Kibana

```yaml
$ sudo systemctl start kibana
$ sudo systemctl status kibana
$ sudo /bin/systemctl daemon-reload
$ sudo /bin/systemctl enable kibana.service
```

![Kibana Up and running](/files/-MONzczHPLM2cU_d4cWH)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.unh4ck.com/building-an-open-siem-from-scratch/1.-installing-elastic-stack/b.-installing-and-configuring-kibana.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
