安装redis的时候,出现了这么一个问题
1 2 3  | [root@etcd3 src]# make testYou need tcl 8.5 or newer in order to run the Redis testmake: *** [test] Error 1 | 
安装一下8.5或者最新的tcl
1 2 3 4 5 6  | [root@etcd3 tmp]# wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz[root@etcd3 tmp]# tar xzvf tcl8.6.1-src.tar.gz  -C /usr/local/[root@etcd3 tmp]# cd  /usr/local/tcl8.6.1/unix/[root@etcd3 unix]# ./configure[root@etcd3 unix]# make[root@etcd3 unix]# make isntall | 
重新执行redis test: [root@etcd3 src]# make test
[root@etcd3 src]# make test ... \o/ All tests passed without errors! Cleanup: may take some time... OK