summaryrefslogtreecommitdiff
path: root/redis.sh
blob: 9878223b0f9e3379904be4e261ec2ab661079834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

echo "Installing Redis database"
. /etc/profile
. ./config
dir=`pwd`
cd /tmp
wget -O - "http://redis.googlecode.com/files/redis-2.2.2.tar.gz" | tar zxv
cd redis-2.2.2
make install
echo "vm.overcommit_memory = 1" >> /etc/sysctl.conf
cd $dir