You need tcl 8.5 or newer in order to run the Redis test

chenoracle發表於2020-05-26

Redis 3.0.2 安裝報錯You need tcl 8.5 ...

DB:Redis 3.0.2

OS:Centos 7.5


錯誤:

[root@cjcos01 src]# make test

You need tcl 8.5 or newer in order to run the Redis test

make: *** [test] Error 1

解決方案:

[root@cjcos01 local]# wget

[root@cjcos01 local]# ll -rth tcl8.6.1-src.tar.gz 

-rw-r--r-- 1 root root 8.4M Sep 20  2013 tcl8.6.1-src.tar.gz

[root@cjcos01 local]# tar -zxvf tcl8.6.1-src.tar.gz 

[root@ cjcos01 local]# cd  /usr/local/tcl8.6.1/unix/  

[root@ cjcos01 local]#  ./configure  

[root@ cjcos01 local]#  make  

[root@ cjcos01 local]#  make install

再次安裝redis

[root@ cjcos01 src]# make test 

[root@ cjcos01 src]# make install 

[root@ cjcos01 src]# pwd

/usr/local/redis/src

[root@ cjcos01 src]# ./redis-server ../config/redis.conf 

[root@ cjcos01 src]# ./redis-cli 

127.0.0.1:6379> set hello world

OK

127.0.0.1:6379> get hello

"world"


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29785807/viewspace-2694526/,如需轉載,請註明出處,否則將追究法律責任。

相關文章