Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

install redis on aws micro instance

I need to install redis in amazon cloud. I need it as a part of my npm module kue (deployment). Can anyone link me step by step tutorial or explain how to do it, considering the fact that I'm not good to bad with linux and administration.

like image 646
user732456 Avatar asked Sep 06 '25 03:09

user732456


1 Answers

If you enable the Extra Packages for Enterprise Linux (EPEL) repository that's present on Amazon Linux, you can install with yum.

sudo yum-config-manager --enable epel
sudo yum install redis
# Start redis server
sudo redis-server /etc/redis.conf
like image 174
Kip Avatar answered Sep 07 '25 20:09

Kip