Redis【笔记】Redis need tcl 8.5 or newer

redis安装

下载:http://download.redis.io/releases/redis-3.0.5.tar.gz

tar xzf redis-3.0.3.tar.gz
$ cd redis-3.0.3
$ make

问题:

make test
You need tcl 8.5 or newer in order to run the Redis test
make: *** [test] Error 1

解决:

  1. wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz  
  2. sudo tar xzvf tcl8.6.1-src.tar.gz  -C /usr/local/  
  3. cd  /usr/local/tcl8.6.1/unix/  
  4. sudo ./configure  
  5. sudo make  
  6. sudo make install  

查看Redis进程

        ps -ef | grep redis

原文地址:https://www.cnblogs.com/geeek/p/4969315.html