Skip to content

Instantly share code, notes, and snippets.

@ducu
Forked from yustam/redis.config
Last active April 19, 2017 08:40
Show Gist options
  • Save ducu/d0ea00641b4d71d3ffc3 to your computer and use it in GitHub Desktop.
Save ducu/d0ea00641b4d71d3ffc3 to your computer and use it in GitHub Desktop.
packages:
yum:
gcc-c++: []
make: []
sources:
/home/ec2-user: http://download.redis.io/releases/redis-2.8.4.tar.gz
commands:
redis_build:
command: make
cwd: /home/ec2-user/redis-2.8.4
redis_config_001:
command: sed -i -e "s/daemonize no/daemonize yes/" redis.conf
cwd: /home/ec2-user/redis-2.8.4
redis_config_002:
command: sed -i -e "s/# maxmemory <bytes>/maxmemory 500MB/" redis.conf
cwd: /home/ec2-user/redis-2.8.4
redis_config_003:
command: sed -i -e "s/# maxmemory-policy volatile-lru/maxmemory-policy allkeys-lru/" redis.conf
cwd: /home/ec2-user/redis-2.8.4
redis_server:
command: src/redis-server redis.conf
cwd: /home/ec2-user/redis-2.8.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment