Redis redis-server configuration example for Ubuntu 12.04 LTS (Precise Pangolin)

Get the default configuration file redis-server for Redis, optimized for Ubuntu 12.04 LTS (Precise Pangolin). 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/logrotate.d/redis-server.

For more configurations and setup guides, visit our related files section to further customize your system.

    /var/log/redis/*.log {
        weekly
        missingok
	copytruncate
        rotate 12
        compress
        notifempty
}

    
  

Config Details

Location
/etc/logrotate.d/redis-server
Operating system
Ubuntu 12.04 LTS (Precise Pangolin)
Length
8 lines
MD5 checksum
06755b99ef70d62a56cff94cbfc36de7

Usage

Download the raw file with wget or curl

Wget

wget -O redis-server.example https://exampleconfig.com/static/raw/redis/ubuntu12.04/etc/logrotate.d/redis-server

cURL

curl https://exampleconfig.com/static/raw/redis/ubuntu12.04/etc/logrotate.d/redis-server > redis-server.example