首先进入官网下载redis的压缩包使用rz命令将其上传
https://redis.io/download
wget http://download.redis.io/releases/redis-5.0.7.tar.gz
有了安装包之后,执行以下代码将其解压开并安装(其实下载页面里有):
tar xzf redis-5.0.7.tar.gz
cd redis-5.0.7
make
完成之后使用执行以下命令以保证你下载代码可以在你的环境下正确执行make test
这里可能出现错误:
You need tcl 8.5 or newer in order to run the Redis test
make: *** [test] Error 1
这是因为没有安装tcl,安装tcl之后可以解决:
wget http://downloads.sourceforge.net/tcl/tcl8.6.1-src.tar.gz
tar xzvf tcl8.6.1-src.tar.gz -C /usr/local/
cd /usr/local/tcl8.6.1/unix/
./configure
make
make install
完成后再执行make test
可以得到成功提示:
All tests passed without errors!
这个时候进入redis-5.0.7下的src文件夹执行:redis-cli
即可启动redis