Files
ProxmoxVE/install/hivemq-install.sh

39 lines
1.0 KiB
Bash
Raw Normal View History

2024-02-11 10:21:22 -05:00
#!/usr/bin/env bash
# Copyright (c) 2021-2025 tteck
2024-02-11 10:21:22 -05:00
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://www.hivemq.com/
2024-02-11 10:21:22 -05:00
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2024-02-11 10:21:22 -05:00
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
2025-07-28 18:50:33 +02:00
JAVA_VERSION="21" setup_java
fetch_and_deploy_gh_release "hivemq" "hivemq/hivemq-community-edition" "prebuild" "latest" "/opt/hivemq" "hivemq-ce-*.zip"
2024-02-11 10:21:22 -05:00
2025-07-28 18:50:33 +02:00
msg_info "Configuring HiveMQ CE"
2024-02-11 10:21:22 -05:00
useradd -d /opt/hivemq hivemq
chown -R hivemq:hivemq /opt/hivemq
chmod +x /opt/hivemq/bin/run.sh
cp /opt/hivemq/bin/init-script/hivemq.service /etc/systemd/system/hivemq.service
rm /opt/hivemq/conf/config.xml
mv /opt/hivemq/conf/examples/configuration/config-sample-tcp-and-websockets.xml /opt/hivemq/conf/config.xml
2025-07-28 18:50:33 +02:00
msg_ok "Configured HiveMQ CE"
msg_info "Starting service"
2024-02-11 10:21:22 -05:00
systemctl enable -q --now hivemq
2025-07-28 18:50:33 +02:00
msg_ok "Service started"
2024-02-11 10:21:22 -05:00
motd_ssh
customize
msg_info "Cleaning up"
2024-06-02 08:00:22 -04:00
$STD apt-get -y autoremove
$STD apt-get -y autoclean
2024-02-11 10:21:22 -05:00
msg_ok "Cleaned"