Skip to content

Instantly share code, notes, and snippets.

@tastyone
Created August 21, 2015 07:12
Show Gist options
  • Save tastyone/f09d71464ae8dec0e054 to your computer and use it in GitHub Desktop.
Save tastyone/f09d71464ae8dec0e054 to your computer and use it in GitHub Desktop.
# install redis 3.0.3
sudo apt-get install language-pack-UTF-8
sudo apt-get update
sudo apt-get install -y make
sudo apt-get install -y build-essential
sudo apt-get install -y libjemalloc-dev
wget http://download.redis.io/releases/redis-3.0.3.tar.gz
tar -zxvf redis-3.0.3.tar.gz
cd redis-3.0.3
make
# maximize the limits for the number of open files
echo "* soft nofile 102400" | sudo tee -a /etc/security/limits.conf
echo "* hard nofile 102400" | sudo tee -a /etc/security/limits.conf
# inst
sudo apt-get install -y ruby
sudo gem install redis
# get redis.conf
cd ~/
wget -O redis.conf "https://gist.githubusercontent.com/tastyone/26a0a9e5fa6da4316aa1/raw/56bef92b4a0238fda55164d75654ba595f6cd18f/redis-cluster-development.conf"
# register aliases
cd ~/
echo "alias redis-server=~/redis-3.0.3/src/redis-server" | tee -a .bashrc
echo "alias redis-cli=~/redis-3.0.3/src/redis-cli" | tee -a .bashrc
echo "alias redis-trib.rb=~/redis-3.0.3/src/redis-trib.rb" | tee -a .bashrc
echo "alias redis-benchmark=~/redis-3.0.3/src/redis-benchmark" | tee -a .bashrc
source .bashrc
# make start.sh
echo "cd ~/" | tee start.sh
echo "if [ ! -d `hostname` ]; then mkdir `hostname`; fi" | tee -a start.sh
echo "cd `hostname`" | tee -a start.sh
echo "~/redis-3.0.3/src/redis-server ~/redis.conf && ps aux | grep redis-server" | tee -a start.sh
# make kill-and-clear.sh
echo "cd ~/" | tee kill-and-clear.sh
echo "pkill redis-server" | tee -a kill-and-clear.sh
echo "rm -rf `hostname`" | tee -a kill-and-clear.sh
echo "rm appendonly.aof dump.rdb nodes.conf" | tee -a kill-and-clear.sh
# make stop.sh
echo "pkill redis-server" | tee stop.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment