Last active
September 12, 2024 07:33
-
-
Save yustam/9086610 to your computer and use it in GitHub Desktop.
Install Redis on Elastic Beanstalk
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Got follwoing error on EB 64bit Amazon Linux 2016.09 v3.1.0 running Node.js
Error: Redis connection to 127.0.0.1:6379 failed - connect ECONNREFUSED 127.0.0.1:6379
at Object.exports._errnoException (util.js:893:11)
at exports._exceptionWithHostPort (util.js:916:20)
at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1075:14)
@yusam really i am very struct with redis configured in AWS elastic beanstalk. I had completed sails.js framework with redis, it is working fine in local machine. How to do make runnable in AWS EB?
Below are i tried steps.
- ElasticCache - created Redis instance with security group which was created in AWS EB environment instance.
- sails - config/session.js - In this file, i am just enabled adapter redis and provide options host and port.
But i didnt get AWS EB workable for my sails.js API. Kindly advice.
Updated in Nov 2019
packages:
yum:
gcc-c++: []
make: []
sources:
/home/ec2-user: http://download.redis.io/releases/redis-5.0.5.tar.gz
commands:
redis_build:
command: make
cwd: /home/ec2-user/redis-5.0.5
redis_config_001:
command: sed -i -e "s/daemonize no/daemonize yes/" redis.conf
cwd: /home/ec2-user/redis-5.0.5
redis_config_002:
command: sed -i -e "s/# maxmemory <bytes>/maxmemory 500MB/" redis.conf
cwd: /home/ec2-user/redis-5.0.5
redis_config_003:
command: sed -i -e "s/# maxmemory-policy volatile-lru/maxmemory-policy allkeys-lru/" redis.conf
cwd: /home/ec2-user/redis-5.0.5
redis_server:
command: src/redis-server redis.conf
cwd: /home/ec2-user/redis-5.0.5
I'm getting the same error as @yingliangzhang, using single docker application
I have redis-2.8.4, how to update it on EB?
Thank you very much! works perfect to use in my application on 127.0.0.1
2023
yum:
gcc-c++: []
make: []
sources:
/home/ec2-user: http://download.redis.io/releases/redis-6.2.6.tar.gz
commands:
redis_build:
command: make
cwd: /home/ec2-user/redis-6.2.6
redis_config_001:
command: sed -i -e "s/daemonize no/daemonize yes/" redis.conf
cwd: /home/ec2-user/redis-6.2.6
redis_config_002:
command: sed -i -e "s/# maxmemory <bytes>/maxmemory 500MB/" redis.conf
cwd: /home/ec2-user/redis-6.2.6
redis_config_003:
command: sed -i -e "s/# maxmemory-policy volatile-lru/maxmemory-policy allkeys-lru/" redis.conf
cwd: /home/ec2-user/redis-6.2.6
redis_server:
command: src/redis-server redis.conf
cwd: /home/ec2-user/redis-6.2.6```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@yustam thank for this gist save my day 👍