Redis 00_example configuration example for Ubuntu 16.04 LTS (Xenial Xerus)

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

    
  

Config Details

Location
/etc/redis/redis-server.pre-down.d/00_example
Operating system
Ubuntu 16.04 LTS (Xenial Xerus)
Length
21 lines
MD5 checksum
dc818c1d4354a8b3d7d26dab3e012937

Usage

Download the raw file with wget or curl

Wget

wget -O 00_example.example https://exampleconfig.com/static/raw/redis/ubuntu16.04/etc/redis/redis-server.pre-down.d/00_example

cURL

curl https://exampleconfig.com/static/raw/redis/ubuntu16.04/etc/redis/redis-server.pre-down.d/00_example > 00_example.example