本文版权归博客园和作者吴双本人共同所有 转载和爬虫请注明原文地址 www.cnblogs.com/tdws 一.基础安装 wget http://download.redis.io/releases/redis-4.0.0.tar.gz tar xzf redis-.tar.gz cd redis- cd src make make test //有问题可参考 http://www.cnblogs.com/tdws/p/6360024.html ./redis-server ../redis.c…
# Redis configuration file example.## Note that in order to read the configuration file, Redis must be# started with the file path as first argument:## ./redis-server /path/to/redis.conf# Note on units: when memory size is needed, it is possible to s…
1.进入/usr/local/src目录,下载redis # cd /usr/local/src# wget http://download.redis.io/releases/redis-4.0.6.tar.gz 2.解压 # tar -xzvf redis-4.0.6.tar.gz 3.编译并安装 # cd redis-4.0.6 # make test #如果没有什么错误再往下执行 # make && make install 4.相关配置 # cp redis.conf /usr/…