1.上传自己的redis。
2.解压,[hadoop@hadoop1 soft]$ tar -zxvf redis-4.0.10.tar.gz(看清楚自己的版本)
3.安装, [hadoop@hadoop1 soft]$ cd /opt/soft/redis-4.0.10
[hadoop@hadoop1 redis-4.0.10]$ make
[hadoop@hadoop1 redis-4.0.10]$ make PREFIX=/opt/module/redis install(有些电脑make的时候会报错但是在这里就不详细写了)
4.配置redis [hadoop@hadoop1 bin]$ cd /opt/soft/redis-4.0.10/redis.conf /opt/module/redis/bin
[hadoop@hadoop1 bin]$ vi redis.conf
//注释bind
#bind127.0.0.1
//设置密码
requirepass123456
5.配置环境变量
export REDIS_HOME=/opt/module/redis
export PATH=$REDIS_HOME/bin:$PATH(如果sudu不可以的话回到root在配置环境)
[hadoop@hadoop1 bin]$ source /etc/profile
6.启动
[hadoop@hadoop1 bin]$ redis-server redis.conf
[hadoop@hadoop1 ~]$ redis-cli