Skip to content

Instantly share code, notes, and snippets.

@SiriusDely
Forked from yustam/redis.config
Created June 14, 2017 07:40
Show Gist options
  • Save SiriusDely/66b791d94969b91ba989ce89d362f558 to your computer and use it in GitHub Desktop.
Save SiriusDely/66b791d94969b91ba989ce89d362f558 to your computer and use it in GitHub Desktop.
Install Redis on Elastic Beanstalk
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