From 9c08e181f2e232bdbe8790e21b4fcc541f6ec13c Mon Sep 17 00:00:00 2001 From: Tsvetomir Hristov Date: Fri, 11 Oct 2024 15:43:30 +0200 Subject: [PATCH] Add the Kibana install script --- install/kibana-install.sh | 49 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 install/kibana-install.sh diff --git a/install/kibana-install.sh b/install/kibana-install.sh new file mode 100644 index 00000000..2d09f030 --- /dev/null +++ b/install/kibana-install.sh @@ -0,0 +1,49 @@ +#!/usr/bin/env bash + +# Copyright (c) 2021-2024 tteck +# Author: tteck (tteckster) +# Co-Author: T.H. (ELKozel) +# License: MIT +# https://github.com/tteck/Proxmox/raw/main/LICENSE + +source /dev/stdin <<< "$FUNCTIONS_FILE_PATH" +color +verb_ip6 +catch_errors +setting_up_container +network_check +update_os + +msg_info "Installing Dependencies" +$STD apt-get install -y wget +$STD apt-get install -y sudo +$STD apt-get install -y mc +$STD apt-get install -y ca-certificates +$STD apt-get install apt-transport-https +$STD apt-get install -y gnupg +msg_ok "Installed Dependencies" + +msg_info "Setting up Elastic Repository" +mkdir -p /etc/apt/keyrings +wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | gpg --dearmor -o /usr/share/keyrings/elasticsearch-keyring.gpg +echo "deb [signed-by=/usr/share/keyrings/elasticsearch-keyring.gpg] https://artifacts.elastic.co/packages/8.x/apt stable main" >/etc/apt/sources.list.d/elastic-8.x.list +msg_ok "Set up Elastic Repository" + +msg_info "Installing Kibana" +$STD apt-get update +$STD apt-get install kibana +msg_ok "Installed Kibana" + +msg_info "Creating Service" +$STD /bin/systemctl daemon-reload +$STD /bin/systemctl enable kibana.service +$STD /bin/systemctl start kibana.service +msg_ok "Created Service" + +motd_ssh +customize + +msg_info "Cleaning up" +$STD apt-get -y autoremove +$STD apt-get -y autoclean +msg_ok "Cleaned" \ No newline at end of file