2025-02-12 20:05:42 +01:00
|
|
|
#!/usr/bin/env bash
|
2026-09-02 13:14:48 +02:00
|
|
|
_CS_DEFAULT_URL="https://raw.githubusercontent.com/community-scripts/ProxmoxVE/main"
|
|
|
|
|
_cs_boot="${COMMUNITY_SCRIPTS_CORE_DIR:-$(dirname "${BASH_SOURCE[0]}")/../../core}/core/build.func"
|
|
|
|
|
source "$_cs_boot" 2>/dev/null || source <(curl -fsSL "${COMMUNITY_SCRIPTS_CORE_URL:-https://raw.githubusercontent.com/community-scripts/core/main}/core/build.func")
|
2026-01-06 13:28:12 +01:00
|
|
|
# Copyright (c) 2021-2026 community-scripts ORG
|
2025-02-12 20:05:42 +01:00
|
|
|
# Author: Slaviša Arežina (tremor021)
|
|
|
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
|
|
|
# Source: https://graylog.org/
|
|
|
|
|
|
|
|
|
|
APP="Graylog"
|
2025-10-08 08:30:22 +02:00
|
|
|
var_tags="${var_tags:-logging}"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_cpu="${var_cpu:-2}"
|
|
|
|
|
var_ram="${var_ram:-8192}"
|
|
|
|
|
var_disk="${var_disk:-30}"
|
|
|
|
|
var_os="${var_os:-debian}"
|
2025-11-06 20:42:35 +01:00
|
|
|
var_version="${var_version:-13}"
|
2026-06-12 00:16:15 +10:00
|
|
|
var_arm64="${var_arm64:-yes}"
|
2025-04-10 11:56:52 +02:00
|
|
|
var_unprivileged="${var_unprivileged:-1}"
|
2025-02-12 20:05:42 +01:00
|
|
|
|
|
|
|
|
header_info "$APP"
|
|
|
|
|
variables
|
|
|
|
|
color
|
|
|
|
|
catch_errors
|
|
|
|
|
|
|
|
|
|
function update_script() {
|
2025-10-30 09:24:16 -07:00
|
|
|
header_info
|
|
|
|
|
check_container_storage
|
|
|
|
|
check_container_resources
|
|
|
|
|
|
|
|
|
|
if [[ ! -d /etc/graylog ]]; then
|
|
|
|
|
msg_error "No ${APP} Installation Found!"
|
2025-02-12 20:05:42 +01:00
|
|
|
exit
|
2025-10-30 09:24:16 -07:00
|
|
|
fi
|
2025-11-06 20:42:35 +01:00
|
|
|
|
2025-10-30 09:24:16 -07:00
|
|
|
msg_info "Stopping Service"
|
|
|
|
|
systemctl stop graylog-datanode
|
|
|
|
|
systemctl stop graylog-server
|
|
|
|
|
msg_info "Stopped Service"
|
|
|
|
|
|
2025-11-06 20:42:35 +01:00
|
|
|
CURRENT_VERSION=$(apt list --installed 2>/dev/null | grep graylog-server | grep -oP '\d+\.\d+\.\d+')
|
|
|
|
|
|
|
|
|
|
if dpkg --compare-versions "$CURRENT_VERSION" lt "6.3"; then
|
2026-04-29 23:55:11 +02:00
|
|
|
MONGO_VERSION="8.2" setup_mongodb
|
2025-11-06 20:42:35 +01:00
|
|
|
|
|
|
|
|
msg_info "Updating Graylog"
|
|
|
|
|
$STD apt update
|
|
|
|
|
$STD apt upgrade -y
|
|
|
|
|
curl -fsSL "https://packages.graylog2.org/repo/packages/graylog-7.0-repository_latest.deb" -o "graylog-7.0-repository_latest.deb"
|
|
|
|
|
$STD dpkg -i graylog-7.0-repository_latest.deb
|
|
|
|
|
$STD apt update
|
2026-02-02 13:01:17 +01:00
|
|
|
ensure_dependencies graylog-server graylog-datanode
|
2025-11-06 20:42:35 +01:00
|
|
|
rm -f graylog-7.0-repository_latest.deb
|
|
|
|
|
msg_ok "Updated Graylog"
|
|
|
|
|
elif dpkg --compare-versions "$CURRENT_VERSION" ge "7.0"; then
|
|
|
|
|
msg_info "Updating Graylog"
|
|
|
|
|
$STD apt update
|
|
|
|
|
$STD apt upgrade -y
|
|
|
|
|
msg_ok "Updated Graylog"
|
|
|
|
|
fi
|
2025-10-30 09:24:16 -07:00
|
|
|
|
|
|
|
|
msg_info "Starting Service"
|
|
|
|
|
systemctl start graylog-datanode
|
|
|
|
|
systemctl start graylog-server
|
|
|
|
|
msg_ok "Started Service"
|
|
|
|
|
msg_ok "Updated successfully!"
|
|
|
|
|
exit
|
2025-02-12 20:05:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start
|
2026-03-31 23:57:16 +02:00
|
|
|
|
|
|
|
|
if [[ $(sysctl -n vm.max_map_count 2>/dev/null) -lt 262144 ]]; then
|
|
|
|
|
sysctl -w vm.max_map_count=262144 >/dev/null 2>&1
|
|
|
|
|
echo "vm.max_map_count=262144" >/etc/sysctl.d/graylog.conf
|
|
|
|
|
fi
|
|
|
|
|
|
2025-02-12 20:05:42 +01:00
|
|
|
build_container
|
|
|
|
|
description
|
|
|
|
|
|
2026-01-06 22:57:40 +01:00
|
|
|
msg_ok "Completed successfully!\n"
|
2025-02-12 20:05:42 +01:00
|
|
|
echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}"
|
2026-06-03 11:03:13 +02:00
|
|
|
echo -e "${INFO}${YW}Access it using the following URL:${CL}"
|
|
|
|
|
echo -e "${GATEWAY}${BGN}http://${IP}:9000${CL}"
|