mirror of
https://github.com/joglomedia/LEMPer.git
synced 2026-04-02 18:58:46 +00:00
268 lines
12 KiB
Bash
Executable File
268 lines
12 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Memcached Installer
|
|
# Min. Requirement : GNU/Linux Ubuntu 18.04
|
|
# Last Build : 12/02/2022
|
|
# Author : MasEDI.Net (me@masedi.net)
|
|
# Since Version : 1.0.0
|
|
|
|
# Include helper functions.
|
|
if [[ "$(type -t run)" != "function" ]]; then
|
|
BASE_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )
|
|
# shellcheck disable=SC1091
|
|
. "${BASE_DIR}/utils.sh"
|
|
|
|
# Make sure only root can run this installer script.
|
|
requires_root "$@"
|
|
|
|
# Make sure only supported distribution can run this installer script.
|
|
preflight_system_check
|
|
fi
|
|
|
|
##
|
|
# Initialize Memcached Installation.
|
|
##
|
|
function init_memcached_install() {
|
|
local SELECTED_INSTALLER=""
|
|
|
|
if [[ "${AUTO_INSTALL}" == true ]]; then
|
|
if [[ "${INSTALL_MEMCACHED}" == true ]]; then
|
|
DO_INSTALL_MEMCACHED="y"
|
|
SELECTED_INSTALLER=${MEMCACHED_INSTALLER:-"repo"}
|
|
else
|
|
DO_INSTALL_MEMCACHED="n"
|
|
fi
|
|
else
|
|
while [[ "${DO_INSTALL_MEMCACHED}" != "y" && "${DO_INSTALL_MEMCACHED}" != "n" ]]; do
|
|
read -rp "Do you want to install Memcached server? [y/n]: " -i y -e DO_INSTALL_MEMCACHED
|
|
done
|
|
fi
|
|
|
|
if [[ ${DO_INSTALL_MEMCACHED} == y* || ${DO_INSTALL_MEMCACHED} == Y* ]]; then
|
|
# Install menu.
|
|
if [[ "${AUTO_INSTALL}" != true ]]; then
|
|
echo "Available Memcached installation method:"
|
|
echo " 1). Install from Repository (repo)"
|
|
echo " 2). Compile from Source (source)"
|
|
echo "-------------------------------------"
|
|
|
|
while [[ ${SELECTED_INSTALLER} != "1" && ${SELECTED_INSTALLER} != "2" && ${SELECTED_INSTALLER} != "none" && \
|
|
${SELECTED_INSTALLER} != "repo" && ${SELECTED_INSTALLER} != "source" ]]; do
|
|
read -rp "Select an option [1-2]: " -e SELECTED_INSTALLER
|
|
done
|
|
fi
|
|
|
|
case "${SELECTED_INSTALLER}" in
|
|
1 | repo)
|
|
echo "Installing Memcached server from repository..."
|
|
|
|
run apt-get install -q -y \
|
|
libevent-dev libsasl2-dev libmemcached-tools libmemcached11 libmemcachedutil2 memcached
|
|
;;
|
|
2 | source)
|
|
echo "Installing Memcached server from source..."
|
|
|
|
run apt-get install -q -y \
|
|
libevent-dev libsasl2-dev libmemcached-tools libmemcached11 libmemcachedutil2
|
|
|
|
local CURRENT_DIR && \
|
|
CURRENT_DIR=$(pwd)
|
|
|
|
run cd "${BUILD_DIR}" && \
|
|
|
|
# Install Libevent from source.
|
|
#LIBEVENT_DOWNLOAD_URL="https://github.com/libevent/libevent/releases/download/release-2.1.11-stable/libevent-2.1.11-stable.tar.gz"
|
|
#if curl -sLI "${LIBEVENT_DOWNLOAD_URL}" | grep -q "HTTP/[.12]* [2].."; then
|
|
# run curl -sSL -o libevent.tar.gz "${LIBEVENT_DOWNLOAD_URL}" && \
|
|
# run tar -zxf libevent.tar.gz && \
|
|
# run cd libevent-* && \
|
|
# run ./configure --prefix=/usr/local/libevent && \
|
|
# run make && \
|
|
# run make install && \
|
|
# run cd "${BUILD_DIR}" || return 1
|
|
#fi
|
|
|
|
# Memcached source.
|
|
if [[ "${MEMCACHED_VERSION}" == "latest" || "${MEMCACHED_VERSION}" == "stable" ]]; then
|
|
MEMCACHED_DOWNLOAD_URL="http://memcached.org/latest"
|
|
else
|
|
MEMCACHED_DOWNLOAD_URL="https://memcached.org/files/memcached-${MEMCACHED_VERSION}.tar.gz"
|
|
fi
|
|
|
|
if curl -sLI "${MEMCACHED_DOWNLOAD_URL}" | grep -q "HTTP/[.12]* [2].."; then
|
|
run curl -sSL -o memcached.tar.gz "${MEMCACHED_DOWNLOAD_URL}" && \
|
|
run tar -zxf memcached.tar.gz && \
|
|
run cd memcached-* && \
|
|
|
|
if [[ "${MEMCACHED_SASL}" == "enable" || "${MEMCACHED_SASL}" == true ]]; then
|
|
#run ./configure --enable-sasl --bindir=/usr/bin --with-libevent=/usr/local/libevent
|
|
run ./configure --enable-sasl --bindir=/usr/bin
|
|
else
|
|
#run ./configure --bindir=/usr/bin --with-libevent=/usr/local/libevent
|
|
run ./configure --bindir=/usr/bin
|
|
fi
|
|
|
|
run make && \
|
|
run make install
|
|
|
|
# Create memcache user.
|
|
if [[ -z $(getent passwd memcache) ]]; then
|
|
if [[ "${DRYRUN}" != true ]]; then
|
|
run groupadd -r memcache
|
|
run useradd -r -M -g memcache memcache
|
|
else
|
|
echo "Create memcache user in dry run mode."
|
|
fi
|
|
fi
|
|
else
|
|
error "An error occured while downloading Memcached source."
|
|
fi
|
|
|
|
run cd "${CURRENT_DIR}" || return 1
|
|
;;
|
|
*)
|
|
# Skip installation.
|
|
error "Installer method not supported. Memcached installation skipped."
|
|
;;
|
|
esac
|
|
|
|
if [[ -n $(command -v memcached) ]]; then
|
|
echo "Configuring Memcached server..."
|
|
|
|
# Remove existing Memcached config.
|
|
[ -f /etc/memcached.conf ] && run mv /etc/memcached.conf /etc/memcached.conf~
|
|
|
|
# Copy multi user instance config.
|
|
run cp -fr etc/memcached/memcache.conf /etc/memcached_memcache.conf
|
|
run cp -fr etc/memcached/www-data.conf /etc/memcached_www-data.conf
|
|
|
|
# Memcached init script.
|
|
[ -f /etc/init.d/memcached ] && run mv /etc/init.d/memcached /etc/init.d/memcached~
|
|
run cp -f etc/init.d/memcached /etc/init.d/
|
|
run chmod ugo+x /etc/init.d/memcached
|
|
|
|
# Memcached systemd script (multi user instance).
|
|
[ -f /lib/systemd/system/memcached.service ] && \
|
|
run mv /lib/systemd/system/memcached.service /lib/systemd/system/memcached.service~
|
|
|
|
[ ! -f /lib/systemd/system/memcached@.service ] && \
|
|
run cp etc/systemd/memcached@.service /lib/systemd/system/
|
|
|
|
[ -f /etc/systemd/system/multi-user.target.wants/memcached@.service ] && \
|
|
run mv /etc/systemd/system/multi-user.target.wants/memcached@.service \
|
|
/etc/systemd/system/multi-user.target.wants/memcached@.service~
|
|
|
|
[ ! -f /etc/systemd/system/multi-user.target.wants/memcached@.service ] && \
|
|
run ln -s /lib/systemd/system/memcached@.service \
|
|
/etc/systemd/system/multi-user.target.wants/memcached@.service
|
|
|
|
# Custom memcached scripts.
|
|
if [ ! -f /usr/share/memcached/scripts/systemd-memcached-wrapper ]; then
|
|
run cp -fr share/memcached /usr/share/
|
|
run chmod ugo+x /usr/share/memcached/scripts/systemd-memcached-wrapper
|
|
run chmod ugo+x /usr/share/memcached/scripts/start-memcached
|
|
run chmod ugo+x /usr/share/memcached/scripts/memcached-tool
|
|
run chmod ugo+x /usr/share/memcached/scripts/damemtop
|
|
fi
|
|
|
|
# Try reloading daemon.
|
|
run systemctl daemon-reload
|
|
|
|
# Enable in start up.
|
|
run systemctl enable memcached@memcache.service
|
|
run systemctl enable memcached@www-data.service
|
|
|
|
# Enabled SASL auth?
|
|
if [[ ${MEMCACHED_SASL} == "enable" || ${MEMCACHED_SASL} == true ]]; then
|
|
echo "Memcached SASL auth option is enabled..."
|
|
|
|
if [[ "${DRYRUN}" != true ]]; then
|
|
export MEMCACHED_USERNAME=${MEMCACHED_USERNAME:-"lempermc"}
|
|
export MEMCACHED_PASSWORD=${MEMCACHED_PASSWORD:-$(openssl rand -base64 64 | tr -dc 'a-zA-Z0-9' | fold -w 16 | head -n 1)}
|
|
|
|
run mkdir -p /etc/sasl2 && run touch /etc/sasl2/memcached_memcache.conf
|
|
cat > /etc/sasl2/memcached_memcache.conf <<EOL
|
|
mech_list: plain
|
|
log_level: 5
|
|
sasldb_path: /etc/sasl2/memcached-sasldb2
|
|
EOL
|
|
|
|
# Add new sasl auth for memcached.
|
|
run saslpasswd2 -p -a memcached -f /etc/sasl2/memcached-sasldb2 -c "${MEMCACHED_USERNAME}" <<<"${MEMCACHED_PASSWORD}"
|
|
run chown memcache:memcache /etc/sasl2/memcached-sasldb2
|
|
run echo -e "\n# Enable SASL auth\n-S" >> /etc/memcached_memcache.conf
|
|
run sed -i "/#\ -vv/a -vv" /etc/memcached_memcache.conf
|
|
|
|
# Save config.
|
|
save_config -e "MEMCACHED_SASL=${MEMCACHED_SASL}\nMEMCACHED_USERNAME=${MEMCACHED_USERNAME}\nMEMCACHED_PASSWORD=${MEMCACHED_PASSWORD}\nMEMCACHED_INSTANCE=memcache"
|
|
|
|
# Save log.
|
|
save_log -e "Memcached SASL auth is enabled, below is your default auth credential.\nUsername: ${MEMCACHED_USERNAME}, password: ${MEMCACHED_PASSWORD}\nSave this credential and use it to authenticate your Memcached connection."
|
|
else
|
|
info "Memcahed SASL-auth configured in dry run mode."
|
|
fi
|
|
fi
|
|
|
|
# Optimizing Memcached configurations.
|
|
|
|
local RAM_SIZE && \
|
|
RAM_SIZE=$(get_ram_size)
|
|
|
|
if [[ ${RAM_SIZE} -le 2048 ]]; then
|
|
# If machine RAM less than / equal 2GiB, set Memcached to 1/16 of RAM size.
|
|
local MEMCACHED_SIZE=$((RAM_SIZE / 16))
|
|
elif [[ ${RAM_SIZE} -gt 2049 && ${RAM_SIZE} -le 8192 ]]; then
|
|
# If machine RAM less than / equal 8GiB and greater than 2GiB, set Memcached to 1/8 of RAM size.
|
|
local MEMCACHED_SIZE=$((RAM_SIZE / 8))
|
|
else
|
|
# Otherwise, set Memcached to max of 2GiB.
|
|
local MEMCACHED_SIZE=2048
|
|
fi
|
|
|
|
run sed -i "s/-m 64/-m ${MEMCACHED_SIZE}/g" /etc/memcached_memcache.conf
|
|
run sed -i "s/-m 64/-m ${MEMCACHED_SIZE}/g" /etc/memcached_www-data.conf
|
|
fi
|
|
|
|
# Installation status.
|
|
if [[ "${DRYRUN}" != true ]]; then
|
|
if [[ $(pgrep -c memcached) -gt 0 ]]; then
|
|
#run systemctl restart memcached@memcache
|
|
run /usr/share/memcached/scripts/start-memcached \
|
|
/etc/memcached_memcache.conf /var/run/memcached_memcache.pid
|
|
#run systemctl restart memcached@www-data
|
|
run /usr/share/memcached/scripts/start-memcached \
|
|
/etc/memcached_www-data.conf /var/run/memcached_www-data.pid
|
|
|
|
success "Memcached server restarted successfully."
|
|
elif [[ -n $(command -v memcached) ]]; then
|
|
#run systemctl start memcached@memcache
|
|
run /usr/share/memcached/scripts/start-memcached \
|
|
/etc/memcached_memcache.conf /var/run/memcached_memcache.pid
|
|
#run systemctl start memcached@www-data
|
|
run /usr/share/memcached/scripts/start-memcached \
|
|
/etc/memcached_www-data.conf /var/run/memcached_www-data.pid
|
|
|
|
if [[ $(pgrep -c memcached) -gt 0 ]]; then
|
|
success "Memcached server started successfully."
|
|
else
|
|
info "Something went wrong with Memcached installation."
|
|
fi
|
|
fi
|
|
else
|
|
info "Memcached installed successfully."
|
|
fi
|
|
else
|
|
info "Memcached server installation skipped."
|
|
fi
|
|
}
|
|
|
|
echo "[Memcached Server Installation]"
|
|
|
|
# Start running things from a call at the end so if this script is executed
|
|
# after a partial download it doesn't do anything.
|
|
if [[ -n $(command -v memcached) && "${FORCE_INSTALL}" != true ]]; then
|
|
info "Memcached server already exists, installation skipped."
|
|
else
|
|
init_memcached_install "$@"
|
|
fi
|