Get the default configuration file 00_example for Redis, optimized for Ubuntu 16.04 LTS (Xenial Xerus). This example configuration ensures optimal compatibility and performance for Redis, making it easy to set up and adjust to meet your needs.
Find and download the configuration file here: /etc/redis/redis-server.pre-down.d/00_example.
For more configurations and setup guides, visit our related files section to further customize your system.
#!/bin/sh
#
# Example script executed before redis-server is stopped.
#
# All executable files within this directory are executed in lexical sort
# order. Filenames must consist entirely of ASCII upper- and lower-case
# letters, digits, underscores, and hyphens. If the script returns with a
# non-zero exit code, no further scripts are run.
#
# Scripts are run by the 'redis' user and associated run-time environment.
#
# Example:
#
# redis-cli SCRIPT LOAD "$(cat /path/to/script.lua)" >/dev/null
#
# Scripts should be idempotent so that multiple calls to (eg.)
# "/etc/init.d/redis-server start" does not result in unintended consequences.
set -eu
exit 0
Download the raw file with wget or curl
wget -O 00_example.example https://exampleconfig.com/static/raw/redis/ubuntu16.04/etc/redis/redis-server.pre-down.d/00_example
curl https://exampleconfig.com/static/raw/redis/ubuntu16.04/etc/redis/redis-server.pre-down.d/00_example > 00_example.example
Other config files you might find useful