1、安装redis
http://www.cnblogs.com/sandea/p/5782192.html
yum -y install redis
wget http://download.redis.io/releases/redis-3.2.3.tar.gz
tar -zxvf redis-3.2.3.tar.gz
mv redis-3.2.3 redis
cd redis
make && make install
2、启动redis
service redis start
测试
redis-cli -h 127.0.0.1 -p 6379 -a test654321
3、解压war
unzip -oq common.war -d common
18081