Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to newest redis version - 2.6.16 #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions redis-install-script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ sudo yum -y install gcc gcc-c++ make
echo "*****************************************"
echo " 2. Download, Untar and Make Redis 2.6"
echo "*****************************************"
sudo wget http://redis.googlecode.com/files/redis-2.6.0-rc3.tar.gz
sudo tar xzf redis-2.6.0-rc3.tar.gz
sudo rm redis-2.6.0-rc3.tar.gz -f
cd redis-2.6.0-rc3
sudo wget http://download.redis.io/releases/redis-2.6.16.tar.gz
sudo tar xzf redis-2.6.16.tar.gz
sudo rm redis-2.6.16.tar.gz -f
cd redis-2.6.16
sudo make
sudo make install
echo "*****************************************"
Expand Down