Ubuntu源码编译redis-3.2.9

前端之家收集整理的这篇文章主要介绍了Ubuntu源码编译redis-3.2.9前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 编译dep及redis

编译dep
bigdata@ubuntu1:~/run/redis/deps$
bigdata@ubuntu1:~/run/redis/deps$ make geohash-int
bigdata@ubuntu1:~/run/redis/deps$ make hiredis
bigdata@ubuntu1:~/run/redis/deps$ make jemalloc
bigdata@ubuntu1:~/run/redis/deps$ make linenoise
bigdata@ubuntu1:~/run/redis/deps$ make lua

编译redis
bigdata@ubuntu1:~/run/redis$ make
编译过程中,若有缺少的包,请自行安装。

2. 启动redis

bigdata@ubuntu1:~/run/redis/src$ ./redis-server &

测试
bigdata@ubuntu1:~/run/redis/src$ ./redis-cli
127.0.0.1:6379> set foo bar
OK
127.0.0.1:6379> get foo
"bar"
127.0.0.1:6379>
原文链接:https://www.f2er.com/ubuntu/352683.html

猜你在找的Ubuntu相关文章