Hi,
(This is my very first question here. Not sure if I am doing right.)
Recently I'd like to add kibana Network plugin into the wazuh docker (Windows 10).
What I did is:
- > docker exec -it wazuh-docker_kibana_1 bash
- $ cd /usr/share/kibana/
- $ curl -OL https://github.com/dlumbrer/kbn_network/releases/download/7.10.0-1/kbn_network-7.10.0.zip
(modify it to 7.10.2 to match my wazuh)
- $ bin/kibana-plugin install file:///usr/share/kibana/plugins/kbn_network-7.10.2.zip
So far looks okay and the message says the installation is complete.
However, now I should restart kibana to make it effective.
Nevertheless, no matter what 3 methods below I did,
- sudo systemctl restart kibana
*or*
- sudo systemctl stop kibana.service + sudo systemctl start kibana.service
*or*
- docker container restart wazuh-docker_kibana_1
all settings are gone from container of wazuh-docker_kibana_1.
I think I am not re-create the container from image. Why it had gone?
How can I re-start the kibana without missing what I just did?
Or I am totally wrong for the kibana plugin installation?
Please help.
Thanks.
Regards,
Allen