Files
ProxmoxVE/install/redis-install.sh

37 lines
806 B
Bash
Raw Normal View History

2024-01-20 21:12:09 +05:30
#!/usr/bin/env bash
# Copyright (c) 2021-2026 tteck
2024-01-20 21:12:09 +05:30
# Author: tteck (tteckster)
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
# Source: https://redis.io/
2024-01-20 21:12:09 +05:30
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
2024-01-20 21:12:09 +05:30
color
verb_ip6
catch_errors
setting_up_container
network_check
update_os
msg_info "Installing Dependencies"
2025-12-17 16:31:39 +01:00
$STD apt install -y apt-transport-https
2024-01-20 21:12:09 +05:30
msg_ok "Installed Dependencies"
2025-12-17 16:31:39 +01:00
msg_info "Setting up Redis Repository"
setup_deb822_repo \
"redis" \
"https://packages.redis.io/gpg" \
"https://packages.redis.io/deb" \
"trixie"
msg_ok "Setup Redis Repository"
msg_info "Setting up Redis"
$STD apt install -y redis
2024-01-20 21:12:09 +05:30
sed -i 's/^bind .*/bind 0.0.0.0/' /etc/redis/redis.conf
systemctl enable -q --now redis-server
2025-12-17 16:31:39 +01:00
msg_ok "Setup Redis"
2024-01-20 21:12:09 +05:30
motd_ssh
customize
cleanup_lxc