Install and config Redis on Oracle Linux 7(.6)
As example we installing redis 5.0.5
1) go to /dist
2) wget http://download.redis.io/releases/redis-5.0.5.tar.gz
3) tar -zxvf redis-5.0.5.tar.gz
4) cd redis-5.0.5
5) make (gcc must be installed before. if not you receive erro and neet to run "make distclean")
Warning appears
cc -O2 -Wall -DLUA_ANSI -DENABLE_CJSON_GLOBAL -DREDIS_STATIC='' -c -o ldo.o ldo.c
ldo.c: In function ‘f_parser’:
ldo.c:496:7: warning: unused variable ‘c’ [-Wunused-variable]
int c = luaZ_lookahead(p->z);
6) make install
7) cd .. and optionally rm redis-5.0.5.tar.gz
sdmrnv, 2019-06-05 [0.938ms, s]