ajout de Kibana
This commit is contained in:
parent
4be15f5491
commit
a92716c509
1 changed files with 20 additions and 3 deletions
|
@ -67,12 +67,29 @@ echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" | sudo tee
|
|||
sudo apt-get update && sudo apt-get install elasticsearch
|
||||
```
|
||||
|
||||
```
|
||||
```bash
|
||||
Démarrer le service Elasticsearch
|
||||
```
|
||||
|
||||
|
||||
```
|
||||
```bash
|
||||
sudo systemctl enable elasticsearch.service
|
||||
sudo systemctl restart elasticsearch.service
|
||||
```
|
||||
|
||||
## Installation de Kibana sur mon instance Yunohost
|
||||
|
||||
```bash
|
||||
sudo apt-get update && sudo apt-get install kibana
|
||||
```
|
||||
|
||||
```bash
|
||||
sudo /bin/systemctl daemon-reload
|
||||
sudo /bin/systemctl enable kibana.service
|
||||
sudo systemctl start kibana.service
|
||||
```
|
||||
|
||||
```bash
|
||||
sudo yunohost app install redirect --args "domain=kibana.francoispelletier.org" -l "Kibana"
|
||||
#Redirect destination path (default: http://127.0.0.1): http://127.0.0.1:5601
|
||||
#Redirect type [public_302 | public_301 | public_proxy | private_proxy] (default: public_302): private_proxy
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue